Default runtime timeout #1253
-
is it possible to change default runtime timeout without creating a custom runtime using FunctionExecutor()? |
Beta Was this translation helpful? Give feedback.
Answered by
JosepSampe
Feb 15, 2024
Replies: 1 comment 2 replies
-
Any parameter that can be set in the openwhisk section of the config file, can be set in the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
runtime_timeout
is applied at the deployment phase. You have to remove your previously deployed function if you want this parameter to take effect.If what you want is to set a different timeout for each different function invocation, it is convenient to set the
runtime_timeout
parameter in your config file to a high value, and then use theexecution_timeout
parameter (<runtime_timeout
) of thefexec.map(
) call.