Serverless-offline: Uncaught error: Cannot read property 'done' of undefined

Created on 17 May 2019  路  8Comments  路  Source: dherault/serverless-offline

I'm using serverless-offline plugin for testing aws lambda functions locally. But when I'm trying to send a response back to the user with res.send() the method throws me below error.

Debug: internal, implementation, error 
    TypeError: Uncaught error: Cannot read property 'done' of undefined
    at createLambdaContext (/home/lenovo/workspace/moneyspring-backoffice-api-services/node_modules/serverless-offline/src/index.js:671:44)
    at process.nextTick (/home/lenovo/workspace/moneyspring-backoffice-api-services/node_modules/serverless-http/lib/dispatch.js:7:9)
    at _combinedTickCallback (internal/process/next_tick.js:131:7)
    at process._tickDomainCallback (internal/process/next_tick.js:218:9)

https://github.com/dherault/serverless-offline/blob/91a9a7b75cb9f2ef3cab9baa2aeaf5d3b740f668/src/index.js#L671

Early response will be highly appreciated.

Most helpful comment

Seems to be fixed in v4.10.5. or maybe with serverless 1.43.0... I updated both today and error is gone.

All 8 comments

Looks like a duplicate of https://github.com/dherault/serverless-offline/issues/659 that was closed.

The cause is cleanup happening before asynchronous handler finishes executing
https://github.com/dherault/serverless-offline/blob/91a9a7b75cb9f2ef3cab9baa2aeaf5d3b740f668/src/index.js#L974-L982

Reverting to [email protected] fixed this issue for me in the short term, same error found in 4.10.1,2,3

Same, although I reverted to 4.9 instead

I am encountering this also.

What about v4.10.4?

Seems to be fixed in v4.10.5. or maybe with serverless 1.43.0... I updated both today and error is gone.

Upgrading from 4.10.2 to 4.10.5 fixed the issue for me.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

MEGApixel23 picture MEGApixel23  路  4Comments

stunningpixels picture stunningpixels  路  3Comments

davidroman0O picture davidroman0O  路  4Comments

dnalborczyk picture dnalborczyk  路  3Comments

jormaechea picture jormaechea  路  4Comments