Skip to content

Commit d0017a7

Browse files
committed
fix(init): Pass 10s timeout to INIT trigger fn
1 parent 8c52411 commit d0017a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/server/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func (ls *LocalStackService) Initialize(bs interop.Bootstrap) error {
129129
}
130130

131131
initStart := metering.Monotime()
132-
err = ls.sandbox.Init(initRequest, initRequest.InvokeTimeoutMs)
132+
err = ls.sandbox.Init(initRequest, initRequest.InitTimeoutMs)
133133
ls.initDuration = float64(metering.Monotime()-initStart) / float64(time.Millisecond)
134134

135135
if err != nil {

0 commit comments

Comments
 (0)