]> git.saurik.com Git - redis.git/commitdiff
MIGRATE: retry one time on I/O error.
authorantirez <antirez@gmail.com>
Wed, 14 Nov 2012 10:30:24 +0000 (11:30 +0100)
committerantirez <antirez@gmail.com>
Wed, 14 Nov 2012 10:30:24 +0000 (11:30 +0100)
Now that we cache connections, a retry attempt makes sure that the
operation don't fail just because there is an existing connection error
on the socket, like the other end closing the connection.

Unfortunately this condition is not detectable using
getsockopt(SO_ERROR), so the only option left is to retry.

We don't retry on timeouts.


No differences found