Merge pull request #443 from tipabu/reraise

Reraise exceptions to preserve stack traces
This commit is contained in:
Peter Hamilton 2018-06-19 14:32:32 -04:00 committed by GitHub
commit 4e138207af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ class ProxyKmipClient(object):
self._is_open = True
except Exception as e:
self.logger.exception("could not open client connection", e)
raise e
raise
def close(self):
"""
@ -149,7 +149,7 @@ class ProxyKmipClient(object):
self._is_open = False
except Exception as e:
self.logger.exception("could not close client connection", e)
raise e
raise
@is_connected
def create(self, algorithm, length, operation_policy_name=None, name=None,