Skip to content
Snippets Groups Projects
Commit 5b04571b authored by Thibault Debatty's avatar Thibault Debatty
Browse files

fix redis connection parameters, which cause laravel to use sync queue

parent 8d1f1c40
No related branches found
No related tags found
No related merge requests found
Pipeline #13407 passed
......@@ -125,6 +125,11 @@ return [
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => 0,
// fix redis connection errors
// (which cause laravel to use sync queue)
// https://stackoverflow.com/questions/11776029/predis-is-giving-error-while-reading-line-from-server#comment57725826_11931651
'read_write_timeout' => 60,
],
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment