diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-01-06 19:27:59 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-01-06 19:27:59 +0000 |
| commit | 7601ba83872e49e8262351189a75628b6296ae6c (patch) | |
| tree | d3e96a27da304a8d4397efc7603df371a2366d46 /openstack | |
| parent | 5d4a9c99fe20085aa1c9afc130776ebe21574a7f (diff) | |
| parent | b8a06a340012dbf50e10ef3c2b866bb0d095a824 (diff) | |
| download | oslo-7601ba83872e49e8262351189a75628b6296ae6c.tar.gz oslo-7601ba83872e49e8262351189a75628b6296ae6c.tar.xz oslo-7601ba83872e49e8262351189a75628b6296ae6c.zip | |
Merge "Fix debug message in multicall of rpc.amqp"
Diffstat (limited to 'openstack')
| -rw-r--r-- | openstack/common/rpc/amqp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/amqp.py b/openstack/common/rpc/amqp.py index ad448f2..393e13e 100644 --- a/openstack/common/rpc/amqp.py +++ b/openstack/common/rpc/amqp.py @@ -359,7 +359,7 @@ def multicall(conf, context, topic, msg, timeout, connection_pool): # that will continue to use the connection. When it's done, # connection.close() will get called which will put it back into # the pool - LOG.debug(_('Making asynchronous call on %s ...'), topic) + LOG.debug(_('Making synchronous call on %s ...'), topic) msg_id = uuid.uuid4().hex msg.update({'_msg_id': msg_id}) LOG.debug(_('MSG_ID is %s') % (msg_id)) |
