mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2025-04-05 22:33:33 +03:00
use provided reset period in counters
This commit is contained in:
commit
312de3f19e
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ func (a *AtomicCounter) ClearCountersProcessed() {
|
|||
}
|
||||
|
||||
func (a *AtomicCounter) FlushCounters() {
|
||||
if time.Now().After(a.timestamp.Load().Add(time.Minute * 15)) {
|
||||
if time.Now().After(a.timestamp.Load().Add(a.resetPeriod)) {
|
||||
a.timestamp.Store(time.Now())
|
||||
a.success.Store(0)
|
||||
a.failure.Store(0)
|
||||
|
|
Loading…
Add table
Reference in a new issue