From: Vsevolod Stakhov Date: Mon, 9 Aug 2021 15:38:07 +0000 (+0100) Subject: [Minor] Dmarc_report: Try to escape from the coroutines curse X-Git-Tag: 3.0~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=118452c62ff48eed45fdf7b1732f85fc0775287a;p=thirdparty%2Frspamd.git [Minor] Dmarc_report: Try to escape from the coroutines curse --- diff --git a/lualib/rspamadm/dmarc_report.lua b/lualib/rspamadm/dmarc_report.lua index 062e8070e8..acc941400c 100644 --- a/lualib/rspamadm/dmarc_report.lua +++ b/lualib/rspamadm/dmarc_report.lua @@ -685,14 +685,19 @@ local function handler(args) local function finish_cb(nsuccess, nfail) if not opts.no_opt then lua_util.debugm(N, 'set last report date to %s', os.time()) + -- Hack to avoid coroutines + async functions mess: we use async redis call here + redis_attrs.callback = function() + logger.messagex('Reporting collection has finished %s dates processed, %s reports: %s completed, %s failed', + ndates, nreports, nsuccess, nfail) + end lua_redis.request(redis_params, redis_attrs, {'SETEX', 'rspamd_dmarc_last_collection', dmarc_settings.reporting.keys_expire, tostring(os.time())}) + else + logger.messagex('Reporting collection has finished %s dates processed, %s reports: %s completed, %s failed', + ndates, nreports, nsuccess, nfail) end - logger.messagex('Reporting collection has finished %s dates processed, %s reports: %s completed, %s failed', - ndates, nreports, nsuccess, nfail) - pool:destroy() end send_reports_by_smtp(opts, all_reports, finish_cb)