Merge pull request #4562 from FinnStutzenstein/redisSessionTimeout

Set a longer socket timeout for redis session
This commit is contained in:
Emanuel Schütze 2019-04-03 22:13:52 +02:00 committed by GitHub
commit 6364a04d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -114,7 +114,8 @@ if use_redis:
'host': '127.0.0.1',
'post': 6379,
'db': 0,
"prefix": "session"
'prefix': 'session',
'socket_timeout': 2
}