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
consthttp2=require('http2');http2.createServer((request,response)=>{console.log('server - end');response.end('asdf');// Delete 'asdf' and it will work}).listen(8080,()=>{constsession=http2.connect('http://localhost:8080');constrequest=session.request();request.once('end',()=>{console.log('client - end');});});
How often does it reproduce? Is there a required condition?
Always.
What is the expected behavior?
server - end
client - end
What do you see instead?
server - end
Additional information
Possible duplicate of #31309 (created 11 January). I decided to create a new issue since it started happening on my side for Node.js >= 13.9.0. It works as expected on 13.8.0.
The text was updated successfully, but these errors were encountered:
What steps will reproduce the bug?
How often does it reproduce? Is there a required condition?
Always.
What is the expected behavior?
What do you see instead?
Additional information
Possible duplicate of #31309 (created 11 January). I decided to create a new issue since it started happening on my side for Node.js >= 13.9.0. It works as expected on 13.8.0.
The text was updated successfully, but these errors were encountered: