summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-09-03 19:36:56 +0000
committerGerrit Code Review <review@openstack.org>2021-09-03 19:36:56 +0000
commitf06c1aa82f138bf0512386011a148bd116e850b7 (patch)
tree9ab19021432b3a307849a5adb7ec464f91eecd9c
parent85c3c22280bd70fe341e42f69f4123588ae4dbdb (diff)
parent7dbceeceef0ca3657c72341375afc639be0b5c02 (diff)
downloadnova-f06c1aa82f138bf0512386011a148bd116e850b7.tar.gz
Merge "Fix request path to query a resource provider by uuid" into stable/victoria
-rw-r--r--nova/cmd/manage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/cmd/manage.py b/nova/cmd/manage.py
index 92c48c71e6..e704336d51 100644
--- a/nova/cmd/manage.py
+++ b/nova/cmd/manage.py
@@ -2668,7 +2668,7 @@ class PlacementCommands(object):
"""
url = '/resource_providers'
if 'uuid' in kwargs:
- url += '&uuid=%s' % kwargs['uuid']
+ url += '?uuid=%s' % kwargs['uuid']
resp = placement.get(url, global_request_id=context.global_id,
version='1.14')