Skip to content

Commit

Permalink
op-program: Increase timeout for the verify job. (#12267)
Browse files Browse the repository at this point in the history
Until recently we were running in-process and didn't have any timeout at all. Seems worth having but we're hitting the 1 hour timeout.
  • Loading branch information
ajsutton authored Oct 2, 2024
1 parent c54044f commit 91f67eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-program/verify/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ func (r *Runner) run(ctx context.Context, l1Head common.Hash, agreedBlockInfo et
}

func runFaultProofProgram(ctx context.Context, args []string) error {
ctx, cancel := context.WithTimeout(ctx, 60*time.Minute)
ctx, cancel := context.WithTimeout(ctx, 3*time.Hour)
defer cancel()
cmd := exec.CommandContext(ctx, "./bin/op-program", args...)
cmd.Stdout = os.Stdout
Expand Down

0 comments on commit 91f67eb

Please sign in to comment.