We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
After running serverless deploy, the lambda is indeed deployed to LocalStack but the process is still running and stuck on:
serverless deploy
LocalStack
Need a faster logging experience than CloudWatch? Try our Dev Mode in Console: run "serverless dev"
How 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, }), }; };
After running
serverless deploy, the lambda is indeed deployed toLocalStackbut the process is still running and stuck on:How to reproduce:
serverless.yml
handler.ts