Corrected default config setting as StrictRedis uses None for password if there is not one set

master
John Hammond 2020-04-16 16:00:54 -04:00
parent 9a210f556c
commit 13f1ef7717
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ with open("secrets") as f:
_redis = {
'host': 'localhost',
'password' : '',
'password' : None, # change this to 'stringOfYourRedisPassword'
'port': 6379,
'db': 0
}