You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With this commit you've added a default value of .0for the timeout. For predis this actually means "zero seconds" which prevents any connections to be established in my case. I always get "Connection timed out" unless I actually set a non-zero timeout in my DSN string.
The default setting in predis is 5.0, so I guess you should set this default setting or leave it at null.
With this commit you've added a default value of
.0
for the timeout. For predis this actually means "zero seconds" which prevents any connections to be established in my case. I always get "Connection timed out" unless I actually set a non-zero timeout in my DSN string.The default setting in predis is
5.0
, so I guess you should set this default setting or leave it atnull
.Also see diff here: php-enqueue/redis@64d907a#diff-f12a3e81838b8c1f6057268e5b96bb3fR166
The text was updated successfully, but these errors were encountered: