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
This commit is contained in:
Dr. Jens Harbott 2023-09-19 10:28:54 +02:00 committed by Dr. Jens Harbott
parent 022b1bf2a6
commit 32dc852b56
1 changed files with 2 additions and 2 deletions

View File

@ -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)