From 32dc852b56a3bfd778595271d2f63c74481631d0 Mon Sep 17 00:00:00 2001 From: "Dr. Jens Harbott" Date: Tue, 19 Sep 2023 10:28:54 +0200 Subject: [PATCH] Fix URLs in status check results The URLs had the wrong order of "/latest/nova" instead of the correct one, leading to "404 not found" errors. Closes-Bug: 2036530 Change-Id: I083381ad2649c06be9443f5ed6a55bddafab4df8 --- nova/cmd/status.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/cmd/status.py b/nova/cmd/status.py index cb7fa9882101..c84f2b95cf98 100644 --- a/nova/cmd/status.py +++ b/nova/cmd/status.py @@ -266,7 +266,7 @@ Instances found without hw_machine_type set. This warning can be ignored if your environment does not contain libvirt based compute hosts. Use the `nova-manage machine_type list_unset` command to list these instances. For more details see the following: -https://docs.openstack.org/latest/nova/admin/hw_machine_type.html""")) +https://docs.openstack.org/nova/latest/admin/hw-machine-type.html""")) return upgradecheck.Result(upgradecheck.Code.WARNING, msg) return upgradecheck.Result(upgradecheck.Code.SUCCESS) @@ -276,7 +276,7 @@ https://docs.openstack.org/latest/nova/admin/hw_machine_type.html""")) msg = (_(""" Service user token configuration is required for all Nova services. For more details see the following: -https://docs.openstack.org/latest/nova/admin/configuration/service-user-token.html""")) # noqa +https://docs.openstack.org/nova/latest/admin/configuration/service-user-token.html""")) # noqa return upgradecheck.Result(upgradecheck.Code.FAILURE, msg) return upgradecheck.Result(upgradecheck.Code.SUCCESS)