summaryrefslogtreecommitdiffstats
path: root/nova/rpc
diff options
context:
space:
mode:
authorMark Washenberger <mark.washenberger@rackspace.com>2011-11-29 16:24:05 -0500
committerMark Washenberger <mark.washenberger@rackspace.com>2011-12-01 10:30:21 -0500
commit0d54770ee109bc7d598539b9238affdd1880997b (patch)
treef15ad7c650e4d799b71092a3c24b2553dbfd47d7 /nova/rpc
parent22df7020b1d7105586404cf7ec920e6d623cc325 (diff)
Make run_instance only support instance uuids.
Related to blueprint internal-uuids. This patchset also attempts a major overhaul of run_instance so that the code is cleaner and easier to understand (no more global-style variables!) Change-Id: I2289f3c253c6246ea51395b2dcfccee2256a2813
Diffstat (limited to 'nova/rpc')
-rw-r--r--nova/rpc/impl_fake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/rpc/impl_fake.py b/nova/rpc/impl_fake.py
index 9a94be07e..4038c4961 100644
--- a/nova/rpc/impl_fake.py
+++ b/nova/rpc/impl_fake.py
@@ -69,7 +69,7 @@ class Consumer(object):
exc_info = sys.exc_info()
raise rpc_common.RemoteError(exc_info[0].__name__,
str(exc_info[1]),
- traceback.format_exception(*exc_info))
+ ''.join(traceback.format_exception(*exc_info)))
class Connection(object):