Skip to content

Commit f33b4ca

Browse files
authored
chore: increase javascript execution timeout (#340)
Signed-off-by: Thomas Bétrancourt <[email protected]>
1 parent 79939da commit f33b4ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/values/values.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ func (v *Values) varEval(varName string) (interface{}, error) {
430430
return nil, err
431431
}
432432

433-
res, err := evalUnsafe(exp, time.Second*5)
433+
res, err := evalUnsafe(exp, time.Second*10)
434434
if err != nil {
435435
return nil, err
436436
}

0 commit comments

Comments
 (0)