Skip to content

Commit

Permalink
fix(function): use default interval on deploy (#3099)
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumsheep committed Apr 28, 2023
1 parent 3e5272a commit d0c1da8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/namespaces/function/v1beta1/custom_deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,9 @@ func DeployStepFunctionDeploy(api *function.API, runtime function.FunctionRuntim
return nil, err
}
return api.WaitForFunction(&function.WaitForFunctionRequest{
FunctionID: fc.ID,
Region: fc.Region,
FunctionID: fc.ID,
Region: fc.Region,
RetryInterval: core.DefaultRetryInterval,
})
}
}

0 comments on commit d0c1da8

Please sign in to comment.