diff options
| author | Joe Gordon <jogo@cloudscaling.com> | 2011-11-09 13:01:35 -0800 |
|---|---|---|
| committer | Joe Gordon <jogo@cloudscaling.com> | 2011-11-09 19:57:44 -0800 |
| commit | d7b9ee35569482be69918ba8ed448688568a7def (patch) | |
| tree | 0195bd8bebfd826fa7ce398f3715c1681bf39e9f /nova/rpc | |
| parent | bcb590cba55d3d7318f2870cddc1cf507652e2a2 (diff) | |
More spelling fixes inside of nova
Change-Id: I79daf7519c99cc363ac7175c85912298f273da8a
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. """ |
