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/common/msapi | |
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/common/msapi')
-rw-r--r-- | share/common/msapi/helper.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/common/msapi/helper.py b/share/common/msapi/helper.py index d45a7293..fa754aa6 100644 --- a/share/common/msapi/helper.py +++ b/share/common/msapi/helper.py @@ -349,7 +349,7 @@ class MultiCloudThreadHelper(object): try: item["status"] = worker(*payload) or 0 except Exception as e: - item["status"] = e.message + item["status"] = str(e) cache_item_for_query = { "id": item["id"], "status": item["status"] @@ -364,14 +364,14 @@ class MultiCloudThreadHelper(object): cache.set(self.owner.cache_expired_prefix + cache_item_for_query["id"], cache_item_for_query, 3600*24) cache.delete(self.owner.cache_prefix + cache_item_for_query["id"]) except Exception as e: - logger.error(e.message) + logger.error(str(e)) else: item["timestamp"] = now #update cache try: cache.set(self.owner.cache_prefix + cache_item_for_query["id"], cache_item_for_query, 3600*24) except Exception as e: - logger.error(e.message) + logger.error(str(e)) pass # end of loop # while True: |