Fix grouping across hourly buckets happening in a 12 seconds window instead of 12 hours window (#31062)

pull/30656/head
Claire 8 months ago committed by GitHub
parent f587ff643f
commit 6e47637dd4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -217,7 +217,7 @@ class NotifyService < BaseService
hour_bucket = previous_bucket if hour_bucket < previous_bucket + MAXIMUM_GROUP_SPAN_HOURS
# We do not concern ourselves with race conditions since we use hour buckets
redis.set(redis_key, hour_bucket, ex: MAXIMUM_GROUP_SPAN_HOURS)
redis.set(redis_key, hour_bucket, ex: MAXIMUM_GROUP_SPAN_HOURS.hours.to_i)
"#{type_prefix}-#{hour_bucket}"
end

Loading…
Cancel
Save