diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2019-09-16 17:16:44 +0300 |
---|---|---|
committer | Yossi Gottlieb <yossigo@gmail.com> | 2019-09-16 17:30:35 +0300 |
commit | a1e538092d79425232588c249f636c4c9d810ec4 (patch) | |
tree | dded144610363f19eb27ad920ec291d7579c76b4 | |
parent | d41443bd3d87adfb32dc28ee02d3aa81e515e255 (diff) |
Make SSL timeout error compatible with rest.
-rw-r--r-- | ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -337,7 +337,7 @@ static int redisSSLRead(redisContext *c, char *buf, size_t bufcap) { } else { const char *msg = NULL; if (errno == EAGAIN) { - msg = "Timed out"; + msg = "Resource temporarily unavailable"; } __redisSetError(c, REDIS_ERR_IO, msg); return -1; |