From 0d54770ee109bc7d598539b9238affdd1880997b Mon Sep 17 00:00:00 2001 From: Mark Washenberger Date: Tue, 29 Nov 2011 16:24:05 -0500 Subject: 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 --- nova/rpc/impl_fake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/rpc') 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): -- cgit