Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

Commit

Permalink
Corrected a timeout bug by adjusting max timeout to 31 days in redisC…
Browse files Browse the repository at this point in the history
…onnect; conforming to POSIX limits.
  • Loading branch information
bwlewis committed Aug 2, 2012
1 parent ae3a100 commit dd54d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/controlCMD.R
Expand Up @@ -18,7 +18,7 @@
} }


`redisConnect` <- `redisConnect` <-
function(host='localhost', port=6379, returnRef=FALSE, timeout=2147483647L) function(host='localhost', port=6379, returnRef=FALSE, timeout=2678399L)
{ {
.redisEnv$current <- new.env() .redisEnv$current <- new.env()
# R nonblocking connections are flaky, especially on Windows, see # R nonblocking connections are flaky, especially on Windows, see
Expand Down

0 comments on commit dd54d96

Please sign in to comment.