diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-05-21 16:53:59 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-05-21 16:53:59 +0000 |
| commit | e88313f5a53d47a2116ad2ed952cef180f87fd19 (patch) | |
| tree | 15bc499312f6756238eeb5cb13659fc2324a5282 /openstack/common | |
| parent | 93ee6e3bfb280bfe5b5f6617c5d89c65cc54028d (diff) | |
| parent | 0a14e1d0c448475773861d5aec9ed62385f6903c (diff) | |
| download | oslo-e88313f5a53d47a2116ad2ed952cef180f87fd19.tar.gz oslo-e88313f5a53d47a2116ad2ed952cef180f87fd19.tar.xz oslo-e88313f5a53d47a2116ad2ed952cef180f87fd19.zip | |
Merge "Enable hacking H703: Multiple positional placeholders"
Diffstat (limited to 'openstack/common')
| -rw-r--r-- | openstack/common/rpc/amqp.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openstack/common/rpc/amqp.py b/openstack/common/rpc/amqp.py index dc9aadb..946501b 100644 --- a/openstack/common/rpc/amqp.py +++ b/openstack/common/rpc/amqp.py @@ -197,8 +197,9 @@ class ReplyProxy(ConnectionContext): msg_id = message_data.pop('_msg_id', None) waiter = self._call_waiters.get(msg_id) if not waiter: - LOG.warn(_('no calling threads waiting for msg_id : %s' - ', message : %s') % (msg_id, message_data)) + LOG.warn(_('no calling threads waiting for msg_id : %(msg_id)s' + ', message : %(data)s'), {'msg_id': msg_id, + 'data': message_data}) else: waiter.put(message_data) |
