You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems like timeout cannot occur locally (of course I made sure the --noTimeout was not set) and I can't find any Task timed out after XXX log printing logic inside the serverless-offline source code.
Is this on purpose and --noTimeout is not being used anymore?
To simulate a timeout, I added
await new Promise((resolve) => setTimeout(resolve, 3000));
at the very beginning of my lambda function and set the lambda timeout to timeout: 2
Did I miss something perhaps?
The text was updated successfully, but these errors were encountered:
Hi!
Seems like timeout cannot occur locally (of course I made sure the --noTimeout was not set) and I can't find any
Task timed out after XXX
log printing logic inside the serverless-offline source code.Is this on purpose and
--noTimeout
is not being used anymore?To simulate a timeout, I added
at the very beginning of my lambda function and set the lambda timeout to
timeout: 2
Did I miss something perhaps?
The text was updated successfully, but these errors were encountered: