From ad5af5f4ddf3d1bbdc159896128267b7ec041fdc Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Thu, 26 Jan 2017 15:14:20 +0000 Subject: [PATCH] ceil not round --- services/track-changes/app/coffee/PackManager.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/track-changes/app/coffee/PackManager.coffee b/services/track-changes/app/coffee/PackManager.coffee index 15e7e8902a..98d4f6f274 100644 --- a/services/track-changes/app/coffee/PackManager.coffee +++ b/services/track-changes/app/coffee/PackManager.coffee @@ -534,5 +534,5 @@ module.exports = PackManager = _getOneDayInFutureWithRandomDelay: -> thirtyMins = 1000 * 60 * 30 - randomThirtyMinMax = Math.round(Math.random() * thirtyMins) + randomThirtyMinMax = Math.ceil(Math.random() * thirtyMins) return new Date(Date.now() + randomThirtyMinMax + 1*DAYS)