Robert Nagy
Robert Nagy
> @ronag wdyt? Should we bump the global undici version and deal with this somewhat? Sure but I'm not sure how we deal with it? Should we just revert the...
@KhafraDev I don't have so much opinion on this one. I'm not interested in the Web API stuff. Which is why I'd like to separate them out more from undici...
You could also do it yourself: ```js await stream.promises.pipeline( src, parallelOutOfOrder(fn, { concurrency }), dst ) class ConditionVariable { #condition #resume = [] constructor(condition) { this.#condition = condition } notify()...
@mcollina I think you misunderstand this PR. It basically fixes an uncatchable error. Doesn't break anything as far as I can tell.
Though I do think this PR is a little over engineered. It's enough to catch the error and forward it "as is" to destroy.
> Another point for discussion is whether we should catch the error and call destroy on the dest. As @lpinca noted that this is a programmatic error and that a...
I think your PR was fine other than there is no need to convert it into another error.
> lgtm > > I have a bad feeling this would be massively breaking. I don't see how. Is it just a feeling or do you have some ideas in...
Super cool. Would this isolate group possibly enable more efficient ways of transferring/sharing resources between isolates in the future? On a separate note. It would be nice if we had...
> template struct v8::FastApiTypedArray Regarding this one. Both us (me) and Deno has commented on the Chromium issue tracker that we believe this deprecation is problematic. IMHO we should try...