Version
main
Subsystem
http2
What steps will reproduce the bug?
const http2 = require('http2');
http2.createServer((req, res) => {
console.log(res.writableObjectMode, res.writableNeedDrain); // undefined undefined
res.end();
}).listen();
What is the expected behavior?
Both should return values matching http.OutgoingMessage (false / boolean), like other writable* getters already mirrored in lib/internal/http2/compat.js.
What do you see instead?
Both return undefined.
Additional information
Refs #29230 (writableFinished, since landed). Same parity gap.
Version
main
Subsystem
http2
What steps will reproduce the bug?
What is the expected behavior?
Both should return values matching
http.OutgoingMessage(false/ boolean), like otherwritable*getters already mirrored inlib/internal/http2/compat.js.What do you see instead?
Both return
undefined.Additional information
Refs #29230 (
writableFinished, since landed). Same parity gap.