diff options
| -rw-r--r-- | dashboard/app/jobs.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dashboard/app/jobs.go b/dashboard/app/jobs.go index e31b0ae81..d94c08b09 100644 --- a/dashboard/app/jobs.go +++ b/dashboard/app/jobs.go @@ -311,6 +311,10 @@ func handleRetestForBug(c context.Context, now time.Time, bug *Bug, bugKey *db.K if now.Sub(crash.LastReproRetest) < config.Obsoleting.ReproRetestPeriod { continue } + if crash.ReproIsRevoked { + // No sense in retesting the already revoked repro. + continue + } // TODO: check if the manager can do such jobs. if managerHasJob[crash.Manager] { continue |
