From: Vsevolod Stakhov Date: Sun, 11 Mar 2018 15:12:25 +0000 (+0000) Subject: [Minor] Use more portable rounding function X-Git-Tag: 1.7.0~13 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4920885f286546ad2fbe225098a3aedeeaddedc1;p=rspamd.git [Minor] Use more portable rounding function --- diff --git a/src/plugins/lua/bayes_expiry.lua b/src/plugins/lua/bayes_expiry.lua index 7e6938e67..725a163c7 100644 --- a/src/plugins/lua/bayes_expiry.lua +++ b/src/plugins/lua/bayes_expiry.lua @@ -164,12 +164,12 @@ local expiry_script = [[ local total = ham + spam if ham / total > ${significant_factor} or spam / total > ${significant_factor} then redis.replicate_commands() - redis.call('EXPIRE', key, math.tointeger(KEYS[2])) + redis.call('EXPIRE', key, math.floor(KEYS[2])) extended = extended + 1 elseif math.abs(ham - spam) <= total * ${epsilon_common} then local ttl = redis.call('TTL', key) redis.replicate_commands() - redis.call('EXPIRE', key, math.tointeger(tonumber(ttl) / ${common_ttl_divisor})) + redis.call('EXPIRE', key, math.floor(tonumber(ttl) / ${common_ttl_divisor})) discriminated = discriminated + 1 end end