diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-08-20 10:01:12 +0000 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2019-08-21 03:02:23 +0000 |
commit | fbc00166dc021898a1a7dfb98672ec3bc28851b9 (patch) | |
tree | 789c60af42a259a5fb58753dc9e4485aea95db87 /share/newton_base/resource | |
parent | 4c33dac9a6735b07c5e7e0d2f67baa2f5eaeed97 (diff) |
Update windriver plugin to py3
Change-Id: I7bb1591a31de777d59ad1b96246bbc4d8e1f86f4
Issue-ID: MULTICLOUD-774
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'share/newton_base/resource')
-rw-r--r-- | share/newton_base/resource/infra_workload_helper.py | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/share/newton_base/resource/infra_workload_helper.py b/share/newton_base/resource/infra_workload_helper.py index f274148b..e6e78130 100644 --- a/share/newton_base/resource/infra_workload_helper.py +++ b/share/newton_base/resource/infra_workload_helper.py @@ -228,8 +228,8 @@ class InfraWorkloadHelper(object): self._logger.debug("AAI update %s response: %s" % (aai_resource['uri'], content)) except Exception as e: - self._logger.error(e.message) - return status.HTTP_500_INTERNAL_SERVER_ERROR, "UPDATE_FAILED", e.message + self._logger.error(str(e)) + return status.HTTP_500_INTERNAL_SERVER_ERROR, "UPDATE_FAILED", str(e) # aai_resource_transactions = {"put": [aai_resource]} # transactions.append(aai_resource_transactions) @@ -284,8 +284,8 @@ class InfraWorkloadHelper(object): self._logger.debug("AAI update %s response: %s" % (aai_resource['uri'], content)) except Exception as e: - self._logger.error(e.message) - return status.HTTP_500_INTERNAL_SERVER_ERROR, "UPDATE_FAILED", e.message + self._logger.error(str(e)) + return status.HTTP_500_INTERNAL_SERVER_ERROR, "UPDATE_FAILED", str(e) # aai_resource_transactions = {"put": [aai_resource]} # transactions.append(aai_resource_transactions) @@ -373,7 +373,7 @@ class InfraWorkloadHelper(object): restcall.req_to_aai(vport_delete_url, "DELETE") except Exception as e: - # return 12, "DELETE_FAILED", e.message + # return 12, "DELETE_FAILED", str(e) pass try: @@ -389,8 +389,8 @@ class InfraWorkloadHelper(object): return 0, "DELETE_COMPLETE", "succeed" except Exception as e: - self._logger.error(e.message) - return status.HTTP_500_INTERNAL_SERVER_ERROR, "DELETE_FAILED", e.message + self._logger.error(str(e)) + return status.HTTP_500_INTERNAL_SERVER_ERROR, "DELETE_FAILED", str(e) pass def workload_status(self, vimid, stack_id=None, stack_name=None, otherinfo=None, project_idorname=None): @@ -444,8 +444,8 @@ class InfraWorkloadHelper(object): return retcode, workload_status, content except Exception as e: - self._logger.error(e.message) - return status.HTTP_500_INTERNAL_SERVER_ERROR, "GET_FAILED", e.message + self._logger.error(str(e)) + return status.HTTP_500_INTERNAL_SERVER_ERROR, "GET_FAILED", str(e) def workload_detail(self, vimid, stack_id, nexturi=None, otherinfo=None, project_idorname=None): @@ -497,5 +497,5 @@ class InfraWorkloadHelper(object): return 0, workload_status, content except Exception as e: - self._logger.error(e.message) - return status.HTTP_500_INTERNAL_SERVER_ERROR, "GET_FAILED", e.message + self._logger.error(str(e)) + return status.HTTP_500_INTERNAL_SERVER_ERROR, "GET_FAILED", str(e) |