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
When in a procedure i have input with a schema it throws this error. But as I remove the input and directly use the procedure it works. The error stack trace says it's clerk fault.
I encountered following issue when using Clerk Middleware and jstack's input validation.
X [ERROR] [API Error] TypeError: This ReadableStream is disturbed (has already been read from), and cannot be used as a body.
at new ClerkRequest
(file:///E:/intonix/application-backup-v3/node_modules/@clerk/backend/src/tokens/clerkRequest.ts:29:5)
The main cause to the problem is clerk reading the stream after it's already been read.
When I debug it I found that this code trying to read it.
Just reporting the bug. As I am now directly using the await c.req.json() and manually parsing it. :)
The text was updated successfully, but these errors were encountered: