We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When passing data with callback it's working fine (the Next state is being triggered).
export const handler = (event, context, cb) => { cb(null, { data: result }); };
But when I'm using async functions (promises) instead:
export const handler = async event => { return { data: result }; };
It's not working, the process is shutting down. The Next state it's not being triggered at all.
The text was updated successfully, but these errors were encountered:
I think this PR will solve this issue: #28 @vkkis93 can you please look into this whenever you have time?
Sorry, something went wrong.
@vkkis93 is there news about async lambda issue?
Hey guys. I'm also getting this bug. This project probably isn't maintained anymore.
No branches or pull requests
When passing data with callback it's working fine (the Next state is being triggered).
But when I'm using async functions (promises) instead:
It's not working, the process is shutting down. The Next state it's not being triggered at all.
The text was updated successfully, but these errors were encountered: