From 9c7494eb671c8953e68817467a6df88ce1a4bbc5 Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Wed, 29 Mar 2017 13:34:55 +0100 Subject: [PATCH] fix off-by-one error in error count --- libraries/logger/logging-manager.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/logger/logging-manager.coffee b/libraries/logger/logging-manager.coffee index 2dff9d6272..ad6c8c4787 100644 --- a/libraries/logger/logging-manager.coffee +++ b/libraries/logger/logging-manager.coffee @@ -71,9 +71,9 @@ module.exports = Logger = @lastErrorCount = 0 @lastErrorTimeStamp = now # only report 5 errors every minute to avoid overload - if @lastErrorCount <= MAX_ERRORS + if @lastErrorCount < MAX_ERRORS # add a note if the rate limit has been hit - note = if @lastErrorCount is MAX_ERRORS then "(rate limited)" else "" + note = if @lastErrorCount+1 is MAX_ERRORS then "(rate limited)" else "" # report the exception @captureException(attributes, message, "error#{note}") err: () ->