summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-11-01 00:17:02 +0000
committerGerrit Code Review <review@openstack.org>2012-11-01 00:17:02 +0000
commit00030ec28f496ec0bb23a0ab892cc6d4af9dcdac (patch)
tree1f7da82fce8f43b77098c8b6f2bf3af4b0f36d61 /openstack
parent3e04c41c96fbf5916ff5ab8c3a8bfec5021f6b04 (diff)
parent3e9880186ffed2105ee97e07f6d3b9c328fcff63 (diff)
downloadoslo-00030ec28f496ec0bb23a0ab892cc6d4af9dcdac.tar.gz
oslo-00030ec28f496ec0bb23a0ab892cc6d4af9dcdac.tar.xz
oslo-00030ec28f496ec0bb23a0ab892cc6d4af9dcdac.zip
Merge "Removes redundant string cast"
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/rpc/impl_zmq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/impl_zmq.py b/openstack/common/rpc/impl_zmq.py
index aab664c..9365eb2 100644
--- a/openstack/common/rpc/impl_zmq.py
+++ b/openstack/common/rpc/impl_zmq.py
@@ -546,7 +546,7 @@ def _call(addr, context, msg_id, topic, msg, timeout=None):
timeout = timeout or CONF.rpc_response_timeout
# The msg_id is used to track replies.
- msg_id = str(uuid.uuid4().hex)
+ msg_id = uuid.uuid4().hex
# Replies always come into the reply service.
reply_topic = "zmq_replies.%s" % CONF.rpc_zmq_host