]> source.dussan.org Git - rspamd.git/commitdiff
Fix lua redis timeout handling.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 6 Apr 2015 14:06:48 +0000 (15:06 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 6 Apr 2015 14:06:48 +0000 (15:06 +0100)
src/lua/lua_redis.c

index e43cc6c7cb37c26dfa321a8161a2df9573916beb..2fa366ffec798e9dd1c35783f402d76319b7685e 100644 (file)
@@ -198,7 +198,8 @@ lua_redis_timeout (int fd, short what, gpointer u)
 {
        struct lua_redis_userdata *ud = u;
 
-       lua_redis_push_error ("timeout while connecting the server", ud, FALSE);
+       msg_info ("timeout while querying redis server");
+       lua_redis_push_error ("timeout while connecting the server", ud, TRUE);
 }
 
 /**