diff options
Diffstat (limited to 'src/plugins/lua/replies.lua')
-rw-r--r-- | src/plugins/lua/replies.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lua/replies.lua b/src/plugins/lua/replies.lua index 236cb5626..901595295 100644 --- a/src/plugins/lua/replies.lua +++ b/src/plugins/lua/replies.lua @@ -42,7 +42,7 @@ local function make_key(goop) end local function replies_check(task) - local function redis_get_cb(task, err, data) + local function redis_get_cb(err, data) if err ~= nil then rspamd_logger.errx('redis_get_cb received error: %1', err) return @@ -83,7 +83,7 @@ local function replies_check(task) end local function replies_set(task) - local function redis_set_cb(task, err, data) + local function redis_set_cb(err, data) if err ~=nil then rspamd_logger.errx('redis_set_cb received error: %1', err) end |