summaryrefslogtreecommitdiffstats
path: root/pike/pike/resource/views/infra_workload.py
diff options
context:
space:
mode:
authorXiaohua Zhang <xiaohua.zhang@windriver.com>2018-11-30 08:52:54 +0000
committerXiaohua Zhang <xiaohua.zhang@windriver.com>2018-11-30 08:52:54 +0000
commit0f8c7107308a0191c2c4df8a3070ed8868c64480 (patch)
tree27df2993b4d72a06f06ec88ad1e152547bc4c451 /pike/pike/resource/views/infra_workload.py
parentf8c71ac2d1a764c953f5c8cf513aa8d3f9810578 (diff)
Fix issue of Delete Infra_workload
Enforce client to pass in workload_id Change-Id: I017321920aad665bee352499e0b43f5c5db5898c Issue-ID: MULTICLOUD-423 Signed-off-by: Xiaohua Zhang <xiaohua.zhang@windriver.com>
Diffstat (limited to 'pike/pike/resource/views/infra_workload.py')
-rw-r--r--pike/pike/resource/views/infra_workload.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/pike/pike/resource/views/infra_workload.py b/pike/pike/resource/views/infra_workload.py
index d78e3cee..45352bde 100644
--- a/pike/pike/resource/views/infra_workload.py
+++ b/pike/pike/resource/views/infra_workload.py
@@ -59,7 +59,7 @@ class InfraWorkload(APIView):
for attr in directive2.get("attributes", []):
label_name = attr["attribute_name"]
label_value = attr["attribute_value"]
- if parameters.has_key(label_name):
+ if label_name in parameters:
template_data["parameters"][label_name] = label_value
else:
self._logger.warn("There is no parameter exist: %s" % label_name)
@@ -67,7 +67,7 @@ class InfraWorkload(APIView):
# update parameters
template_data["parameters"] = parameters
- #reset to make sure "files" are empty
+ # reset to make sure "files" are empty
template_data["file"] = {}
#authenticate
@@ -305,7 +305,13 @@ class InfraWorkload(APIView):
self._logger.info("vimid, requri: %s, %s" % (vimid, requri))
self._logger.debug("META: %s" % request.META)
- try :
+ try:
+ if requri == "":
+ raise VimDriverNewtonException(
+ message="workload_id is not specified",
+ content="workload_id must be specified to delete the workload",
+ status_code=400)
+
# assume the workload_type is heat
template_type = "heat"
stack_id = requri