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 9e42f46 commit 51d8658Copy full SHA for 51d8658
src/socketio/redis_manager.py
@@ -108,7 +108,7 @@ def initialize(self):
108
def _get_redis_module_and_error(self):
109
parsed_url = urlparse(self.redis_url)
110
schema = parsed_url.scheme.split('+', 1)[0].lower()
111
- if schema == 'redis':
+ if schema in ['redis', 'unix']:
112
if redis is None or RedisError is None:
113
raise RuntimeError('Redis package is not installed '
114
'(Run "pip install redis" '
0 commit comments