We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51d8658 commit 3edbaddCopy full SHA for 3edbadd
src/socketio/async_redis_manager.py
@@ -70,7 +70,7 @@ def __init__(self, url='redis://localhost:6379/0', channel='socketio',
70
def _get_redis_module_and_error(self):
71
parsed_url = urlparse(self.redis_url)
72
schema = parsed_url.scheme.split('+', 1)[0].lower()
73
- if schema == 'redis':
+ if schema in ['redis', 'unix']:
74
if aioredis is None or RedisError is None:
75
raise RuntimeError('Redis package is not installed '
76
'(Run "pip install redis" '
0 commit comments