Merge "Log the original exception in is_sync"

This commit is contained in:
Zuul 2019-10-09 16:51:15 +00:00 committed by Gerrit Code Review
commit 772043881d

View File

@ -332,6 +332,7 @@ class PythonAction(Action):
return a.is_sync()
except BaseException as e:
LOG.exception(e)
raise exc.InputException(str(e))
def validate_input(self, input_dict):