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
The callback cb in stream.pushStream( headers, options, cb ) gets null in 9.4.0 but a proper stream in 9.3.0. This is deep in a large complex code, haven't made a minimal reproducible example, sorry about that. The documentation says nothing about null being a possible value, causing crashes obviously.
I wonder if this is related to other issues that started to appear in 9.4.0, like #18176. Fishy things do happen in 9.4
The text was updated successfully, but these errors were encountered:
Yes, this was a large change in the http2 API that landed in 9.4. The first argument passed to the callback is now either an Error or null and the push stream is now the second argument. This can happen in 9.4 because http2 is still experimental.
The callback
cb
instream.pushStream( headers, options, cb )
getsnull
in 9.4.0 but a proper stream in 9.3.0. This is deep in a large complex code, haven't made a minimal reproducible example, sorry about that. The documentation says nothing about null being a possible value, causing crashes obviously.I wonder if this is related to other issues that started to appear in 9.4.0, like #18176. Fishy things do happen in 9.4
The text was updated successfully, but these errors were encountered: