Skip to content

Commit f06c1aa

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Fix request path to query a resource provider by uuid" into stable/victoria
2 parents 85c3c22 + 7dbceec commit f06c1aa

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
@@ -2668,7 +2668,7 @@ def _get_resource_providers(self, context, placement, **kwargs):
26682668
"""
26692669
url = '/resource_providers'
26702670
if 'uuid' in kwargs:
2671-
url += '&uuid=%s' % kwargs['uuid']
2671+
url += '?uuid=%s' % kwargs['uuid']
26722672

26732673
resp = placement.get(url, global_request_id=context.global_id,
26742674
version='1.14')

0 commit comments

Comments
 (0)