From f3620a7c2eb8af7b05f5facc8072215af8850dd1 Mon Sep 17 00:00:00 2001 From: Max Kotliar Date: Fri, 7 Sep 2018 18:53:49 +0300 Subject: [PATCH] [redis] Revert timeout change. fixes https://github.com/php-enqueue/enqueue-dev/issues/525 --- pkg/redis/RedisConnectionFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/redis/RedisConnectionFactory.php b/pkg/redis/RedisConnectionFactory.php index 22e9e6e76..4a4c806a9 100644 --- a/pkg/redis/RedisConnectionFactory.php +++ b/pkg/redis/RedisConnectionFactory.php @@ -154,7 +154,7 @@ private function defaultConfig(): array 'host' => 'localhost', 'scheme' => 'redis', 'port' => 6379, - 'timeout' => .0, + 'timeout' => null, 'reserved' => null, 'retry_interval' => null, 'vendor' => 'phpredis',