aboutsummaryrefslogtreecommitdiffstats
path: root/catalog/pub/Dmaap_lib/dmaap/identity.py
diff options
context:
space:
mode:
authorMars chen <chenzihao@bupt.edu.cn>2020-07-30 17:36:17 +0800
committerMars chen <chenzihao@bupt.edu.cn>2020-07-30 17:49:13 +0800
commitd4f87a40133722da489e4ae03825be544a7baca7 (patch)
treeea9b026c450d7f10fdaa066693bcf056e0c0e27b /catalog/pub/Dmaap_lib/dmaap/identity.py
parent7a0c2aa47bc5297a7977e7b7d1a362768efa1e17 (diff)
fix the bug: Exception with e.message
Change-Id: Ia5a24a8dd15ca80cd6f36230933bc4451c7cde67 Issue-ID: MODELING-406 Signed-off-by: Mars chen <chenzihao@bupt.edu.cn>
Diffstat (limited to 'catalog/pub/Dmaap_lib/dmaap/identity.py')
-rw-r--r--catalog/pub/Dmaap_lib/dmaap/identity.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/catalog/pub/Dmaap_lib/dmaap/identity.py b/catalog/pub/Dmaap_lib/dmaap/identity.py
index 57f4016..6e801e8 100644
--- a/catalog/pub/Dmaap_lib/dmaap/identity.py
+++ b/catalog/pub/Dmaap_lib/dmaap/identity.py
@@ -47,7 +47,7 @@ class IdentityClient:
}
return resp_data
except Exception as e:
- raise DmaapClientException('create apikey from dmaap failed: ' + e.message)
+ raise DmaapClientException('create apikey from dmaap failed: ' + str(e))
def get_apikey(self, apikey):
try:
@@ -59,7 +59,7 @@ class IdentityClient:
ret = ret.json()
return ret
except Exception as e:
- raise DmaapClientException('get apikey from dmaap failed: ' + e.message)
+ raise DmaapClientException('get apikey from dmaap failed: ' + str(e))
def delete_apikey(self):
pass