mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
Remove Redis remote authentication feature.
We can add it back later but for now we can just stick with localhost since that's what most people will want. (imported from commit c5fe524282219dc62a0670f569c0cb6af04be339)
This commit is contained in:
@@ -5,5 +5,4 @@ from django.conf import settings
|
||||
import redis
|
||||
|
||||
def get_redis_client():
|
||||
return redis.StrictRedis(host=settings.REDIS_HOST, port=settings.REDIS_PORT,
|
||||
password=settings.REDIS_PASSWORD, db=0)
|
||||
return redis.StrictRedis(host=settings.REDIS_HOST, port=settings.REDIS_PORT, db=0)
|
||||
|
||||
Reference in New Issue
Block a user