Robert Nagy

Results 161 issues of Robert Nagy

Implementation would be basically the same as for cluster but using the worker thread API instead.

feature

- `PATCH` without `content-length` which writes more or less data than `upload-offset + upload-length`? - Race when two clients send `PATCH` to same resource with matching `upload-offset`? - Incompatible or...

I would like to be able to gracefully shutdown a deepstream server (for e.g. upgrade, down-scaling etc..). This means that `close` should not return until it can do so without...

feature

We are currently working with [implementing fetch](https://github.com/nodejs/undici/tree/main/lib/fetch) in https://github.com/nodejs/undici which is being considered for inclusion in Node core. I was hoping that maybe we could combine some of our efforts...

I believe it is possible that the 407 case can cause infinite recursion if the server keeps asking for proxy authentication. Do we need a counter and max value here?

topic: http

Would be possible/make sense to add `AsyncIterable` to the extract body algorithm? This would help with interopt with Node streams when implementing fetch in Node without violating the spec.

addition/proposal
topic: api

The spec says that `request.client` may be null. > A request has an associated client (null or an environment settings object). However, the spec does not take this into account...

In https://fetch.spec.whatwg.org/#abort-fetch it says: > If request’s body is not null and is readable, then cancel request’s body with error. However, there is no check for whether the body is...

Before > Set response to the result of running HTTP-network-or-cache fetch given fetchParams, isAuthenticationFetch, and true. We should probably add a: > If connection uses HTTP/2, then transmit an RST_STREAM...

Even though a server shouldn't send a body with a redirect response, it is still possible. The way the spec is defined we have a deadlock here if the connection...

needs implementer interest
topic: http
topic: redirects