Skip to content

Commit

Permalink
Lower time window to 5s
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Dec 4, 2014
1 parent 2def8b2 commit 18fe2dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/event_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def _process_existing_aggregate(self, group, event, data):
).exclude(
# add 30 seconds to the regression window to account for
# races here
active_at__gte=date - timedelta(seconds=30),
active_at__gte=date - timedelta(seconds=5),
).update(active_at=date, status=STATUS_UNRESOLVED))

transaction.commit_unless_managed(using=group._state.db)
Expand Down

0 comments on commit 18fe2dd

Please sign in to comment.