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:
Yoyo Zhou
2015-08-20 20:21:15 -07:00
parent e41c00107d
commit ef320c6e95
3 changed files with 1 additions and 9 deletions

View File

@@ -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)