Commit 91f67eb9 authored by Adrian Sutton's avatar Adrian Sutton Committed by GitHub

op-program: Increase timeout for the verify job. (#12267)

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.
parent c54044f4
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment