Skip to content

Commit

Permalink
Use a much higher overall limit of intermittent bugs to close, keepin…
Browse files Browse the repository at this point in the history
…g a reasonable limit by team to avoid noise
  • Loading branch information
marco-c committed Sep 30, 2024
1 parent 686dc25 commit d878328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bugbot/rules/close_intermittents.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class Intermittents(BzCleaner):
normal_changes_max: int = 300
normal_changes_max: int = 2100

def __init__(self):
super().__init__()
Expand All @@ -17,7 +17,7 @@ def description(self):
return "Intermittent test failure bugs unchanged in 21 days"

def get_max_actions(self):
limit_per_run = 140
limit_per_run = 2100
limit_per_team = 42

# Number of teams that have bugs to be autoclosed
Expand Down

0 comments on commit d878328

Please sign in to comment.