mirror of https://github.com/celery/kombu.git
Fixed typo client -> c
This commit is contained in:
parent
c39bf4606c
commit
a9b53e89bc
|
@ -178,7 +178,7 @@ class Channel(virtual.Channel):
|
||||||
except self.connection.connection_errors:
|
except self.connection.connection_errors:
|
||||||
self._in_listen = False
|
self._in_listen = False
|
||||||
if response is not None:
|
if response is not None:
|
||||||
payload = self._handle_message(client, response)
|
payload = self._handle_message(c, response)
|
||||||
if payload["type"] == "message":
|
if payload["type"] == "message":
|
||||||
return (deserialize(payload["data"]),
|
return (deserialize(payload["data"]),
|
||||||
self._fanout_to_queue[payload["channel"]])
|
self._fanout_to_queue[payload["channel"]])
|
||||||
|
|
Loading…
Reference in New Issue