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
Deno.serve should have default limits for both accept timeout, TLS handshake timeout, and header read timeout, and response write timeout.
Deno.serve should also have default size limits for req.text, req.bytes, req.arrayBuffer, req.formData, and req.blob. When a user makes a request with a larger body than this default value, we'd error the request. req.body would not be subject to these limits.
The user could customize both timeouts and the size limit in Deno.serve:
Deno.serve
should have default limits for both accept timeout, TLS handshake timeout, and header read timeout, and response write timeout.Deno.serve
should also have default size limits forreq.text
,req.bytes
,req.arrayBuffer
,req.formData
, andreq.blob
. When a user makes a request with a larger body than this default value, we'd error the request.req.body
would not be subject to these limits.The user could customize both timeouts and the size limit in
Deno.serve
:The text was updated successfully, but these errors were encountered: