Skip to content

Commit 4cdb2b3

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Fix request path to query a resource provider by uuid" into stable/wallaby
2 parents 16812ae + 62a3fa4 commit 4cdb2b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nova/cmd/manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2541,7 +2541,7 @@ def _get_resource_providers(self, context, placement, **kwargs):
25412541
"""
25422542
url = '/resource_providers'
25432543
if 'uuid' in kwargs:
2544-
url += '&uuid=%s' % kwargs['uuid']
2544+
url += '?uuid=%s' % kwargs['uuid']
25452545

25462546
resp = placement.get(url, global_request_id=context.global_id,
25472547
version='1.14')

0 commit comments

Comments
 (0)