Robert Nagy

Results 162 issues of Robert Nagy

Once https://github.com/nodejs/undici/pull/2826 lands we can start moving some logic into interceptors in order to ensure we get similar logic for all api implementations: - [ ] throwOnError as interceptor -...

enhancement

It seems to me a bit forced to try to have http2 logic inside the http 1.1 client. I think it might make sense to move shared stuff up one...

enhancement
H2

The current behavior was broken. The user must decide if and how a request should be retried. ## This relates to... ## Rationale ## Changes ### Features ### Bug Fixes...

TODO: - [x] remove anti-pattern dispatcher hooks - [x] remove old interceptor pattern (https://github.com/nodejs/undici/pull/2754) - [x] new interceptor pattern (https://github.com/nodejs/undici/pull/2795) - [ ] change so that dispatcher hooks take an...

enhancement

Working on a shared next branch is to difficult.

Will unexpctedly call `onConnect´ on sub handlers which causes weird undefined problems. Refs: https://github.com/nodejs/undici/pull/2285

bug

## This would solve... Currently the undici package is quite heavy with a lot of stuff that you might not need, e.g. web api. Would be good to separate undici...

enhancement

In utils we use: const kDestroyed = Symbol('kDestroyed') const kIsErrored = Symbol('kIsErrored') const kIsReadable = Symbol('kIsReadable') const kIsDisturbed = Symbol('kIsDisturbed') But that means that using helper methods with node core...

https://github.com/Cyan4973/xxHash/releases/tag/v0.8.2 Seems to have some WASM improvements

Recent changes to streams in node 14 have slightly broken this package. Especially when it comes to errors wher `destroy()` is invoked before `callback(err)`. This PR aligns this package with...