From 0f66680f93bf90e22e61e72ac4a5731f36a109dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20Gr=C3=A4uler?= Date: Thu, 20 Apr 2017 17:03:39 +0200 Subject: [PATCH] Fix bug in UNIX Domain Socket implementation --- ws4redis/publisher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ws4redis/publisher.py b/ws4redis/publisher.py index 6cb5c36d..7f70bc7b 100644 --- a/ws4redis/publisher.py +++ b/ws4redis/publisher.py @@ -10,7 +10,7 @@ conn_args = dict(settings.WS4REDIS_CONNECTION, path=settings.WS4REDIS_CONNECTION['unix_socket_path']) del conn_args['unix_socket_path'] - pool = ConnectionPool(connection_class=UnixDomainSocketConnection, **conn_args) + redis_connection_pool = ConnectionPool(connection_class=UnixDomainSocketConnection, **conn_args) else: redis_connection_pool = ConnectionPool(**settings.WS4REDIS_CONNECTION)