]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Keep cursor permanently 2187/head
authorAlexander Moisseev <moiseev@mezonplus.ru>
Thu, 19 Apr 2018 18:47:28 +0000 (21:47 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Thu, 19 Apr 2018 18:47:28 +0000 (21:47 +0300)
src/plugins/lua/bayes_expiry.lua

index f50484d537717dd1c48223918b167f03de6d1120..257503866c5c9ace70f2f18883b27b4541467883 100644 (file)
@@ -266,8 +266,8 @@ local expiry_script = [[
     end
   end
 
-  redis.call('SETEX', cursor_key, ${expire_step} * 10, tostring(next))
-  redis.call('SETEX', step_key, ${expire_step} * 10, tostring(step))
+  redis.call('SET', cursor_key, tostring(next))
+  redis.call('SET', step_key, tostring(step))
   redis.call('DEL', lock_key)
 
   return {next, step, nelts, extended, discriminated, mean, stddev, common, significant, infrequent, ttls_set}