Merge "Fix small misuse of cast within oslo.messaging wrapper"

This commit is contained in:
Jenkins 2014-03-12 10:05:14 +00:00 committed by Gerrit Code Review
commit 7e36684935

View File

@ -38,7 +38,7 @@ class RPCClient(object):
def cast(self, name, **kwargs):
ctx = context.current()
return self._client.cast(ctx.to_dict(), name, **kwargs)
self._client.cast(ctx.to_dict(), name, **kwargs)
def call(self, name, **kwargs):
ctx = context.current()