diff --git a/glanceclient/tests/unit/v2/fixtures.py b/glanceclient/tests/unit/v2/fixtures.py index 3d897709..e4ece7ee 100644 --- a/glanceclient/tests/unit/v2/fixtures.py +++ b/glanceclient/tests/unit/v2/fixtures.py @@ -90,8 +90,8 @@ schema_fixture = { "properties": { "architecture": { "description": "Operating system architecture as specified in " - "http://docs.openstack.org/trunk/openstack-compute" - "/admin/content/adding-images.html", + "http://docs.openstack.org/user-guide/common" + "/cli_manage_images.html", "is_base": "false", "type": "string" }, diff --git a/glanceclient/v2/image_schema.py b/glanceclient/v2/image_schema.py index 1e1d3bfa..513f7904 100644 --- a/glanceclient/v2/image_schema.py +++ b/glanceclient/v2/image_schema.py @@ -13,7 +13,7 @@ # License for the specific language governing permissions and limitations # under the License. -_doc_url = "http://docs.openstack.org/trunk/openstack-compute/admin/content/adding-images.html" # noqa +_doc_url = "http://docs.openstack.org/user-guide/common/cli_manage_images.html" # noqa # NOTE(flaper87): Keep a copy of the current default schema so that # we can react on cases where there's no connection to an OpenStack # deployment. See #1481729