Redis: Add Channel.Client so the Redis client can be overridden

This commit is contained in:
Ask Solem 2010-11-11 09:05:46 +01:00
parent d52c6130e9
commit a77bfc93a6
1 changed files with 6 additions and 4 deletions

View File

@ -102,6 +102,8 @@ class ChannelPoller(Thread):
class Channel(virtual.Channel):
Client = Redis
_client = None
supports_fanout = True
keyprefix_fanout = "_kombu.fanout.%s"
@ -176,10 +178,10 @@ class Channel(virtual.Channel):
raise ValueError(
"Database name must be int between 0 and limit - 1")
return Redis(host=conninfo.hostname,
port=conninfo.port or DEFAULT_PORT,
db=database,
password=conninfo.password)
return self.Client(host=conninfo.hostname,
port=conninfo.port or DEFAULT_PORT,
db=database,
password=conninfo.password)
@property
def client(self):