From: Serge Petrenko via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: avtikhon@tarantool.org, kyukhin@tarantool.org Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH 2/3] feedback_daemon: do not trigger feedback send on first occurred event Date: Wed, 21 Apr 2021 09:31:45 +0300 [thread overview] Message-ID: <5f37ecb788b80f0e12eb6eebcacd048cbf624ff9.1618986404.git.sergepetrenko@tarantool.org> (raw) In-Reply-To: <cover.1618986404.git.sergepetrenko@tarantool.org> Follow-up #5750 --- src/box/lua/feedback_daemon.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/box/lua/feedback_daemon.lua b/src/box/lua/feedback_daemon.lua index 8953185b2..239af5fda 100644 --- a/src/box/lua/feedback_daemon.lua +++ b/src/box/lua/feedback_daemon.lua @@ -368,11 +368,6 @@ local function save_event(self, event) error("Usage: box.internal.feedback_daemon.save_event(string)") end self.cached_events[event] = (self.cached_events[event] or 0) + 1 - if self.cached_events[event] == 1 then - -- The first occurred event of this type triggers report dispatch - -- immediately. - self.send() - end end -- these functions are used for test purposes only -- 2.24.3 (Apple Git-128)
next prev parent reply other threads:[~2021-04-21 6:32 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-04-21 6:31 [Tarantool-patches] [PATCH 0/3] replace feedback send on tarantool start with send after 2 minutes of operation Serge Petrenko via Tarantool-patches 2021-04-21 6:31 ` [Tarantool-patches] [PATCH 1/3] Revert "feedback_daemon: send feedback on server start" Serge Petrenko via Tarantool-patches 2021-04-21 6:31 ` Serge Petrenko via Tarantool-patches [this message] 2021-04-21 6:31 ` [Tarantool-patches] [PATCH 3/3] feedback_daemon: speedup the first send to 2 minutes Serge Petrenko via Tarantool-patches 2021-04-21 10:18 ` [Tarantool-patches] [PATCH 0/3] replace feedback send on tarantool start with send after 2 minutes of operation Kirill Yukhin via Tarantool-patches
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=5f37ecb788b80f0e12eb6eebcacd048cbf624ff9.1618986404.git.sergepetrenko@tarantool.org \ --to=tarantool-patches@dev.tarantool.org \ --cc=avtikhon@tarantool.org \ --cc=kyukhin@tarantool.org \ --cc=sergepetrenko@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH 2/3] feedback_daemon: do not trigger feedback send on first occurred event' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox