diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-05-06 17:28:46 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-05-06 17:28:46 +0100 |
commit | b295a4be34f1581b84d8f17f44c41a114dc91493 (patch) | |
tree | 4802526ca1d1124f6eb4d7d018c2899fa6a9d031 | |
parent | e8b56eb96b2fafea01d96d0f77a4d39c55d67b6b (diff) | |
download | rspamd-b295a4be34f1581b84d8f17f44c41a114dc91493.tar.gz rspamd-b295a4be34f1581b84d8f17f44c41a114dc91493.zip |
[Fix] Another try to fix hanged redis sessions
-rw-r--r-- | src/lua/lua_redis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_redis.c b/src/lua/lua_redis.c index 920d8852a..f899fa96b 100644 --- a/src/lua/lua_redis.c +++ b/src/lua/lua_redis.c @@ -403,7 +403,7 @@ lua_redis_timeout (int fd, short what, gpointer u) REDIS_RETAIN (ctx); msg_debug ("timeout while querying redis server"); - lua_redis_push_error ("timeout while connecting the server", ctx, sp_ud, FALSE); + lua_redis_push_error ("timeout while connecting the server", ctx, sp_ud, TRUE); if (sp_ud->c->ctx) { ac = sp_ud->c->ctx; |