job: save the real exception when unpickling fails

We raise our own exception which hides the real error (often an ImportError),
making it difficult to see what happend. Instead, save the original exception
too.
main
Idan Kamara 12 years ago
parent 0bc451f75b
commit 2baa2e370f

@ -11,6 +11,6 @@ class NoQueueError(Exception):
class UnpickleError(Exception): class UnpickleError(Exception):
def __init__(self, message, raw_data): def __init__(self, message, raw_data, inner_exception):
super(UnpickleError, self).__init__(message) super(UnpickleError, self).__init__(message, inner_exception)
self.raw_data = raw_data self.raw_data = raw_data

@ -27,8 +27,8 @@ def unpickle(pickled_string):
""" """
try: try:
obj = loads(pickled_string) obj = loads(pickled_string)
except (StandardError, UnpicklingError): except (StandardError, UnpicklingError), e:
raise UnpickleError('Could not unpickle.', pickled_string) raise UnpickleError('Could not unpickle.', pickled_string, e)
return obj return obj

Loading…
Cancel
Save