From 28b428b74386bc8081436082fc801706daf5e00a Mon Sep 17 00:00:00 2001 From: Boris Gorbylev Date: Thu, 4 Aug 2016 22:33:09 +0300 Subject: [PATCH] worker_id moved to logger --- src/nginx-metrix/aggregator.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nginx-metrix/aggregator.lua b/src/nginx-metrix/aggregator.lua index 26ed654..4c7ce4c 100644 --- a/src/nginx-metrix/aggregator.lua +++ b/src/nginx-metrix/aggregator.lua @@ -18,8 +18,8 @@ function M.init(options, storage) end end -function M.aggregate(worker_id) - M._logger:debug(('Aggregating on worker #%s'):format(worker_id)) +function M.aggregate() + M._logger:debug('Aggregating') error('Not implemented yet') end