Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assertion failure on HTTP/2 server #41458

Open
wilsonzlin opened this issue Jan 10, 2022 · 2 comments
Open

Assertion failure on HTTP/2 server #41458

wilsonzlin opened this issue Jan 10, 2022 · 2 comments
Labels
http2 Issues or PRs related to the http2 subsystem.

Comments

@wilsonzlin
Copy link

wilsonzlin commented Jan 10, 2022

Version

v17.2.0

Platform

Darwin wl-mbp.local 21.2.0 Darwin Kernel Version 21.2.0: Sun Nov 28 20:28:41 PST 2021; root:xnu-8019.61.5~1/RELEASE_ARM64_T6000 arm64

Subsystem

http2

What steps will reproduce the bug?

A standard http2 server setup, using a self-signed SSL certificate and the compatibility API, with a large and complicated request handler function. I can't provide all the code but can provide some more specifics if needed.

const http2 = require("http2");

const server = http2.createSecureServer({
  key: fs.readFileSync("..."),
  cert: fs.readFileSync("..."),
});

server.on("request", (req, res) => {
  const html = generatePageUtf8Buffer();
  res.writeHead(200, {
    "Content-Type": "text/html",
    "Content-Length": html.length,
  });
  res.write(html);
  res.end();
});

server.listen(8443);

How often does it reproduce? Is there a required condition?

It reproduced consistently.

What is the expected behavior?

No crash due to internal assertion error.

What do you see instead?

Here's the output after starting the server with NODE_DEBUG=http2 and NODE_DEBUG_NATIVE=http2, with two requests being made to the server (/ and /favicon.ico):

HTTP2 74664: Http2Session server: received a connection
HTTP2 74664: Http2Session server: setting up session handle
Http2Session server (7230) session created
Http2Session server (7230) i/o stream consumed
HTTP2 74664: Http2Session server: sending settings
HTTP2 74664: Http2Session server: submitting settings
Http2Session server (7230) scheduling write
HTTP2 74664: Http2Session server: created
(node:74664) Warning: Setting the NODE_DEBUG environment variable to 'http2' can expose sensitive data (such as passwords, tokens and authentication headers) in the resulting log.
(Use `node --trace-warnings ...` to show where the warning was created)
Http2Session server (7230) sending pending data
Http2Session server (7230) nghttp2 has 21 bytes to send
Http2Session server (7230) wants read? 1
Http2Session server (7230) write finished with status 0
Http2Session server (7230) receiving 148 bytes, offset 0
Http2Session server (7230) receiving 148 bytes [wants data? 1]
Http2Session server (7230) complete frame received: type: 4
Http2Session server (7230) complete frame received: type: 8
Http2Session server (7230) complete frame received: type: 2
Http2Session server (7230) complete frame received: type: 2
Http2Session server (7230) complete frame received: type: 2
Http2Session server (7230) complete frame received: type: 2
Http2Session server (7230) complete frame received: type: 2
Http2Session server (7230) complete frame received: type: 2
Http2Session server (7230) sending pending data
Http2Session server (7230) nghttp2 has 9 bytes to send
Http2Session server (7230) wants read? 1
Http2Session server (7230) receiving 321 bytes, offset 0
Http2Session server (7230) receiving 321 bytes [wants data? 1]
Http2Session server (7230) beginning headers for stream 15
Http2Session server (7230) complete frame received: type: 1
Http2Session server (7230) handle headers frame for stream 15
HTTP2 74664: Http2Stream 15 [Http2Session server]: headers received
HTTP2 74664: Http2Stream 15 [Http2Session server]: initiating response
HttpStream 15 (7236) [Http2Session server (7230)] submitting response
HttpStream 15 (7236) [Http2Session server (7230)] response submitted
HttpStream 15 (7236) [Http2Session server (7230)] queuing 1 buffers to send
Http2Session server (7230) complete frame received: type: 8
Http2Session server (7230) sending pending data
Http2Session server (7230) scheduling write
Http2Session server (7230) write finished with status 0
Http2Session server (7230) sending pending data
Http2Session server (7230) nghttp2 has 54 bytes to send
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16384 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16384 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) stream 15 has pending outbound data
Http2Session server (7230) sending 16228 bytes for data frame on stream 15
Http2Session server (7230) nghttp2 has 16228 bytes to send directly
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) deferring stream 15
Http2Session server (7230) wants read? 1
Http2Session server (7230) write finished with status 0
HTTP2 74664: Http2Stream 15 [Http2Session server]: shutting down writable on _final
HttpStream 15 (7236) [Http2Session server (7230)] writable side shutdown
Http2Session server (7230) scheduling write
HTTP2 74664: Http2Stream 15 [Http2Session server]: destroying stream
HttpStream 15 (7236) [Http2Session server (7230)] sending rst_stream with code 0
Http2Session server (7230) sending pending data
Http2Session server (7230) reading outbound data for stream 15
Http2Session server (7230) no more data for stream 15
HttpStream 15 (7236) [Http2Session server (7230)] let javascript know we are ready for trailers
Http2Session server (7230) scheduling write
HttpStream 15 (7236) [Http2Session server (7230)] destroying stream
HttpStream 15 (7236) [Http2Session server (7230)] destroying stream
Http2Session server (7230) sending pending data
Http2Session server (7230) stream 15 closed with code: 0
Http2Session server (7230) nghttp2 has 13 bytes to send
Http2Session server (7230) wants read? 1
HttpStream 15 (7236) [Http2Session server (7230)] tearing down stream
Http2Session server (7230) write finished with status 0
Http2Session server (7230) receiving 9 bytes, offset 0
Http2Session server (7230) receiving 9 bytes [wants data? 1]
Http2Session server (7230) complete frame received: type: 4
HTTP2 74664: Http2Session server: settings received
Http2Session server (7230) settings refreshed for session
Http2Session server (7230) sending pending data
Http2Session server (7230) wants read? 1
Http2Session server (7230) receiving 115 bytes, offset 0
Http2Session server (7230) receiving 115 bytes [wants data? 1]
Http2Session server (7230) beginning headers for stream 17
Http2Session server (7230) complete frame received: type: 1
Http2Session server (7230) handle headers frame for stream 17
HTTP2 74664: Http2Stream 17 [Http2Session server]: headers received
HTTP2 74664: Http2Stream 17 [Http2Session server]: initiating response
HttpStream 17 (7274) [Http2Session server (7230)] submitting response
HttpStream 17 (7274) [Http2Session server (7230)] response submitted
HttpStream 17 (7274) [Http2Session server (7230)] queuing 1 buffers to send
Http2Session server (7230) complete frame received: type: 8
Http2Session server (7230) sending pending data
Http2Session server (7230) nghttp2 has 38 bytes to send
Http2Session server (7230) reading outbound data for stream 17
HTTP2 74664: Http2Stream 17 [Http2Session server]: shutting down writable on _final
HttpStream 17 (7274) [Http2Session server (7230)] writable side shutdown
HTTP2 74664: Http2Stream 17 [Http2Session server]: destroying stream
HttpStream 17 (7274) [Http2Session server (7230)] sending rst_stream with code 0
Http2Session server (7230) sending pending data
HttpStream 17 (7274) [Http2Session server (7230)] destroying stream
HttpStream 17 (7274) [Http2Session server (7230)] destroying stream
Http2Session server (7230) no more data for stream 17
HttpStream 17 (7274) [Http2Session server (7230)] let javascript know we are ready for trailers
node[74664]: ../src/node_http2.cc:2160:void node::http2::Http2Stream::OnTrailers(): Assertion `!this->is_destroyed()' failed.
 1: 0x1027ef5c0 node::Abort() [/opt/homebrew/Cellar/node/17.2.0/bin/node]
 2: 0x1027ef5a4 node::Abort() [/opt/homebrew/Cellar/node/17.2.0/bin/node]
 3: 0x1028180e8 node::http2::Http2Stream::Provider::Stream::~Stream() [/opt/homebrew/Cellar/node/17.2.0/bin/node]
 4: 0x102817efc node::http2::Http2Stream::Provider::Stream::OnRead(nghttp2_session*, int, unsigned char*, unsigned long, unsigned int*, nghttp2_data_source*, void*) [/opt/homebrew/Cellar/node/17.2.0/bin/node]
 5: 0x104b9541c nghttp2_session_pack_data [/opt/homebrew/Cellar/libnghttp2/1.46.0/lib/libnghttp2.14.dylib]
 6: 0x104b90c20 nghttp2_session_mem_send_internal [/opt/homebrew/Cellar/libnghttp2/1.46.0/lib/libnghttp2.14.dylib]
 7: 0x104b90ac0 nghttp2_session_mem_send [/opt/homebrew/Cellar/libnghttp2/1.46.0/lib/libnghttp2.14.dylib]
 8: 0x10280dbb8 node::http2::Http2Session::SendPendingData() [/opt/homebrew/Cellar/node/17.2.0/bin/node]
 9: 0x10280d610 node::http2::Http2Session::ConsumeHTTP2Data() [/opt/homebrew/Cellar/node/17.2.0/bin/node]
10: 0x10280c5f0 node::http2::Http2Session::OnStreamRead(long, uv_buf_t const&) [/opt/homebrew/Cellar/node/17.2.0/bin/node]
11: 0x10291a2a8 node::crypto::TLSWrap::ClearOut() [/opt/homebrew/Cellar/node/17.2.0/bin/node]
12: 0x10291a8d0 node::crypto::TLSWrap::Cycle() [/opt/homebrew/Cellar/node/17.2.0/bin/node]
13: 0x102918b90 node::crypto::TLSWrap::OnStreamRead(long, uv_buf_t const&) [/opt/homebrew/Cellar/node/17.2.0/bin/node]
14: 0x1028a5930 node::LibuvStreamWrap::OnUvRead(long, uv_buf_t const*) [/opt/homebrew/Cellar/node/17.2.0/bin/node]
15: 0x104a43290 uv__stream_io [/opt/homebrew/Cellar/libuv/1.42.0/lib/libuv.1.dylib]
16: 0x104a4a464 uv__io_poll [/opt/homebrew/Cellar/libuv/1.42.0/lib/libuv.1.dylib]
17: 0x104a3b0dc uv_run [/opt/homebrew/Cellar/libuv/1.42.0/lib/libuv.1.dylib]
18: 0x10272a83c node::SpinEventLoop(node::Environment*) [/opt/homebrew/Cellar/node/17.2.0/bin/node]
19: 0x10282cf0c node::NodeMainInstance::Run(int*, node::Environment*) [/opt/homebrew/Cellar/node/17.2.0/bin/node]
20: 0x10282cb60 node::NodeMainInstance::Run(node::EnvSerializeInfo const*) [/opt/homebrew/Cellar/node/17.2.0/bin/node]
21: 0x1027bd284 node::Start(int, char**) [/opt/homebrew/Cellar/node/17.2.0/bin/node]
22: 0x104c110f4

Additional information

No response

@lpinca lpinca added the http2 Issues or PRs related to the http2 subsystem. label Jan 10, 2022
@Trott
Copy link
Member

Trott commented Jan 11, 2022

@nodejs/http2

@RafaelGSS
Copy link
Member

I could not reproduce it locally.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
http2 Issues or PRs related to the http2 subsystem.
Projects
None yet
Development

No branches or pull requests

4 participants