Nicholas Hurley
Nicholas Hurley
For all frame types, lib/stream.js uses this._pushUpstream to submit the frame for sending, which in turn calls Flow.prototype.push. In Flow.prototype.push, we could conceivably get into a state where there are...
``` /Users/hurley/src/node-http2/lib/protocol/stream.js:627 throw new Error('Sending illegal frame (' + frame.type + ') in ' + this. ^ Error: Sending illegal frame (DATA) in CLOSED state. at Stream.transition [as _transition] (/Users/hurley/src/node-http2/lib/protocol/stream.js:627:13)...
#149 noted that we don't respect SETTINGS_MAX_CONCURRENT_STREAMS, and furthermore that we don't notify the caller when we receive a RST_STREAM because we failed to respect it! We should emit an...
#112 complains of issues creating a bunyan logger directly for use with node-http2 instead of using our createLogger. While that may be an issue that needs investigating, we should at...
As mentioned in PR #82, just to make things a bit more sane and better-separated. Not high-priority.