summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2019-05-03 18:47:00 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2019-05-04 05:02:08 +0100
commit54fdf817755799a538a3e19e6c63ff07a32e3033 (patch)
tree2b21e709de230f5784660f5a65e7915c926db82f /src/plugins
parent4925e97c7de2560141703460fa62c5036bba680f (diff)
downloadrspamd-54fdf817755799a538a3e19e6c63ff07a32e3033.tar.gz
rspamd-54fdf817755799a538a3e19e6c63ff07a32e3033.zip
[Minor] Pet luacheck
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/lua/clickhouse.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/lua/clickhouse.lua b/src/plugins/lua/clickhouse.lua
index da8c736cc..b9a3c2e09 100644
--- a/src/plugins/lua/clickhouse.lua
+++ b/src/plugins/lua/clickhouse.lua
@@ -577,7 +577,8 @@ local function clickhouse_collect(task)
local scan_real,scan_virtual = task:get_scan_time()
scan_real,scan_virtual = math.floor(scan_real * 1000), math.floor(scan_virtual * 1000)
if scan_real < 0 then
- rspamd_logger.messagex(task, 'clock skew detected for message: %s ms real scan time (reset to 0), %s virtual scan time',
+ rspamd_logger.messagex(task,
+ 'clock skew detected for message: %s ms real scan time (reset to 0), %s virtual scan time',
scan_real, scan_virtual)
scan_real = 0
end