diff options
Diffstat (limited to 'pkg/manager/diff.go')
| -rw-r--r-- | pkg/manager/diff.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/manager/diff.go b/pkg/manager/diff.go index 781ac0152..d0cb33aa3 100644 --- a/pkg/manager/diff.go +++ b/pkg/manager/diff.go @@ -272,12 +272,12 @@ func (dc *diffContext) NeedRepro(crash *Crash) bool { return true } -func (dc *diffContext) RunRepro(crash *Crash) *ReproResult { +func (dc *diffContext) RunRepro(ctx context.Context, crash *Crash) *ReproResult { dc.mu.Lock() dc.reproAttempts[crash.Title]++ dc.mu.Unlock() - res, stats, err := repro.Run(context.Background(), crash.Output, repro.Environment{ + res, stats, err := repro.Run(ctx, crash.Output, repro.Environment{ Config: dc.new.cfg, Features: dc.new.features, Reporter: dc.new.reporter, |
