diff options
author | Xiaohua Zhang <xiaohua.zhang@windriver.com> | 2019-04-12 10:56:36 +0000 |
---|---|---|
committer | Xiaohua Zhang <xiaohua.zhang@windriver.com> | 2019-04-12 10:56:36 +0000 |
commit | c802d6dd73f8ac7dac5b8a52df64b32835afc748 (patch) | |
tree | a4b216452d0c6079a57baa2c8ef1e1eb30b70354 /share/newton_base | |
parent | 64022697fffcce5211f06b408921c6360b7c8537 (diff) |
Fix bug of query infra_workload
Change-Id: I6378d5803c6cc1bd82696d46d27df06b75e34d6d
Issue-ID: MULTICLOUD-567
Signed-off-by: Xiaohua Zhang <xiaohua.zhang@windriver.com>
Diffstat (limited to 'share/newton_base')
-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 |