Skip to content
Snippets Groups Projects
Commit 2d59c4a2 authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Fix not rethrowing exception

parent 344c1385
No related branches found
No related tags found
No related merge requests found
Pipeline #14686 passed with warnings
...@@ -34,7 +34,8 @@ def lta_on_error_print(func): ...@@ -34,7 +34,8 @@ def lta_on_error_print(func):
logging.error('error sending request on LTA rpc with code %s: %s', error.faultCode, logging.error('error sending request on LTA rpc with code %s: %s', error.faultCode,
_hide_password(error.faultString)) _hide_password(error.faultString))
raise LTAClientError() raise LTAClientError()
except Exception as e:
raise e
return wrapper return wrapper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment