diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-04-12 10:13:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-12 10:13:35 +0000 |
commit | df8a90f400d85bdf910d25b988886c110d051de2 (patch) | |
tree | 07b6ac02331590e6e52c10610127fbcae2081fa1 /share | |
parent | 8a661eb8352f4b41c66ce44883f58f63c8cfc14b (diff) | |
parent | c802d6dd73f8ac7dac5b8a52df64b32835afc748 (diff) |
Merge "Fix bug of query infra_workload"
Diffstat (limited to 'share')
-rw-r--r-- | share/newton_base/resource/infra_workload_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/newton_base/resource/infra_workload_helper.py b/share/newton_base/resource/infra_workload_helper.py index 13d1e18d..f340157c 100644 --- a/share/newton_base/resource/infra_workload_helper.py +++ b/share/newton_base/resource/infra_workload_helper.py @@ -422,7 +422,7 @@ class InfraWorkloadHelper(object): service_type = "orchestration" resource_uri = "/stacks" if stack_id: - resource_uri = "/stacks/id=%s" % stack_id + resource_uri = "/stacks?id=%s" % stack_id elif stack_name: resource_uri = "/stacks?name=%s" % stack_name |