diff options
Diffstat (limited to 'nova/rpc')
| -rw-r--r-- | nova/rpc/common.py | 4 | ||||
| -rw-r--r-- | nova/rpc/impl_carrot.py | 2 | ||||
| -rw-r--r-- | nova/rpc/impl_kombu.py | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/nova/rpc/common.py b/nova/rpc/common.py index 120d6ad14..a7597d29b 100644 --- a/nova/rpc/common.py +++ b/nova/rpc/common.py @@ -13,10 +13,10 @@ flags.DEFINE_integer('rpc_conn_pool_size', 30, class RemoteError(exception.NovaException): """Signifies that a remote class has raised an exception. - Containes a string representation of the type of the original exception, + Contains a string representation of the type of the original exception, the value of the original exception, and the traceback. These are sent to the parent as a joined string so printing the exception - contains all of the relevent info. + contains all of the relevant info. """ message = _("Remote error: %(exc_type)s %(value)s\n%(traceback)s.") diff --git a/nova/rpc/impl_carrot.py b/nova/rpc/impl_carrot.py index 303a4ff88..2a518d7d7 100644 --- a/nova/rpc/impl_carrot.py +++ b/nova/rpc/impl_carrot.py @@ -274,7 +274,7 @@ class AdapterConsumer(Consumer): @exception.wrap_exception() def _process_data(self, msg_id, ctxt, method, args): - """Thread that maigcally looks for a method on the proxy + """Thread that magically looks for a method on the proxy object and calls it. """ diff --git a/nova/rpc/impl_kombu.py b/nova/rpc/impl_kombu.py index e7fc491ea..74c8cf412 100644 --- a/nova/rpc/impl_kombu.py +++ b/nova/rpc/impl_kombu.py @@ -319,7 +319,7 @@ class Connection(object): self.reconnect() def reconnect(self): - """Handles reconnecting and re-estblishing queues""" + """Handles reconnecting and re-establishing queues""" if self.connection: try: self.connection.close() @@ -609,7 +609,7 @@ class ProxyCallback(object): @exception.wrap_exception() def _process_data(self, ctxt, method, args): - """Thread that maigcally looks for a method on the proxy + """Thread that magically looks for a method on the proxy object and calls it. """ |
