mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-13 07:27:43 +00:00
calculate next check properly
This commit is contained in:
parent
bb3b4807ff
commit
be926f9118
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ func (nc *notificationsConsumer) Consume(delivery rmq.Delivery) {
|
|||
// Only update delay on accounts we can actually check, otherwise it skews
|
||||
// the numbers too much.
|
||||
if !newAccount {
|
||||
latency := now.Sub(previousNextCheck) - domain.NotificationCheckInterval
|
||||
latency := now.Sub(previousNextCheck)
|
||||
_ = nc.statsd.Histogram("apollo.queue.delay", float64(latency.Milliseconds()), []string{}, rate)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue