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
Describe the bug After running serverless deploy, the lambda is indeed deployed to LocalStack but the process is still running and stuck on:
Need a faster logging experience than CloudWatch? Try our Dev Mode in Console: run "serverless dev"
To Reproduce serverless.yml
service: serverless-localstack frameworkVersion: "3" provider: name: aws runtime: nodejs18.x plugins: - serverless-esbuild - serverless-localstack functions: hello: handler: handler.hello
handler.ts
export const hello = async (event) => { return { statusCode: 200, body: JSON.stringify({ message: "Go Serverless", input: event, }), }; };
The text was updated successfully, but these errors were encountered:
for reference localstack/serverless-localstack#248
Sorry, something went wrong.
No branches or pull requests
Describe the bug
After running serverless deploy, the lambda is indeed deployed to LocalStack but the process is still running and stuck on:
Need a faster logging experience than CloudWatch? Try our Dev Mode in Console: run "serverless dev"
To Reproduce
serverless.yml
handler.ts
The text was updated successfully, but these errors were encountered: