fix variable name

Change-Id: I6039d09533c86d651b5c63b500058aac3c9f0a7f
This commit is contained in:
Hervé Beraud 2020-11-24 14:49:39 +01:00 committed by Stephen Finucane
parent 54f8724be2
commit 0e4ec379c0
1 changed files with 3 additions and 3 deletions

View File

@ -1261,11 +1261,11 @@ class Connection(object):
_set_current_channel is responsible to cleanup the cache.
"""
queue_indentifier = (exchange.name, routing_key)
queue_identifier = (exchange.name, routing_key)
# NOTE(sileht): We only do it once per reconnection
# the Connection._set_current_channel() is responsible to clear
# this cache
if queue_indentifier not in self._declared_queues:
if queue_identifier not in self._declared_queues:
queue = kombu.entity.Queue(
channel=self.channel,
exchange=exchange,
@ -1279,7 +1279,7 @@ class Connection(object):
'Connection._publish_and_creates_default_queue: '
'declare queue %(key)s on %(exchange)s exchange', log_info)
queue.declare()
self._declared_queues.add(queue_indentifier)
self._declared_queues.add(queue_identifier)
self._publish(exchange, msg, routing_key=routing_key, timeout=timeout)