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
I'm trying to deploy a complied deno project into AWS Lambda. I'm using Hono, and in the docs, they are using Deno.serve.
The problem is that lambda timeouts and returns Internal Server Error.
After investigating the problem it seems that the Deno.serve is causing this.
Version: Deno 2.0.6
I'm trying to deploy a complied deno project into AWS Lambda. I'm using Hono, and in the docs, they are using Deno.serve.
The problem is that lambda timeouts and returns
Internal Server Error
.After investigating the problem it seems that the
Deno.serve
is causing this.In the log I can see:
Steps:
main.ts
withDeno.serve((req) => new Response("Hello World!"));
arn:aws:lambda:eu-central-1:753240598075:layer:LambdaAdapterLayerX86:23
.I know there is a dockerised approach for deploying Deno, but I don't want to use it because it uses too much memory.
If you take an oak example from aws-lambda-web-adapter examples, compile it, and deploy it to AWS Lambda - it works.
The text was updated successfully, but these errors were encountered: