timeout when get the body await request.json()

When making this request:
POST /api/test/auth/sign-in/email HTTP/1.1
Content-Type: application/json
User-Agent: insomnia/9.3.3
Host: localhost:3333
Content-Length: 55
{
    "email": "test@test.com",
    "password": "test1234"
}

I'm getting a timeout. While debugging this request to my Fastify backend, I found that the timeout is happening in the better-call getBody function. Any solutions for this?

NOTE: The API is working when i request the endpoint /ok
Screenshot_from_2024-12-02_14-30-42.png
Screenshot_from_2024-12-02_14-32-58.png
Screenshot_from_2024-12-02_14-36-04.png
Was this page helpful?