summaryrefslogtreecommitdiff
path: root/nova/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/context.py')
-rw-r--r--nova/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/context.py b/nova/context.py
index 619c39e212..dc42b38b5b 100644
--- a/nova/context.py
+++ b/nova/context.py
@@ -424,7 +424,7 @@ def scatter_gather_cells(context, cell_mappings, timeout, fn, *args, **kwargs):
# Only log the exception traceback for non-nova exceptions.
if not isinstance(e, exception.NovaException):
LOG.exception('Error gathering result from cell %s', cell_uuid)
- result = e.__class__(e.args)
+ result = e
# The queue is already synchronized.
queue.put((cell_uuid, result))