kombu.mixins: Fixes typo

This commit is contained in:
Ask Solem 2011-11-28 15:37:25 +00:00
parent da7d21af6f
commit 246e42efed
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ class ConsumerMixin(LogMixin):
with self._consume_from(*self.get_consumers(cls, channel)) as c:
yield conn, channel, c
self.debug("Consumers cancelled")
self.on_consume_end(connection, channel)
self.on_consume_end(conn, channel)
self.debug("Connection closed")
@contextmanager