-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
http2: connect promisify customization, other improvements #15207
Conversation
src/node_http2_core-inl.h
Outdated
int32_t id = (frame->hd.type == NGHTTP2_PUSH_PROMISE) ? | ||
frame->push_promise.promised_stream_id : | ||
frame->hd.stream_id; | ||
frame->push_promise.promised_stream_id : |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These two lines are only indented two spaces vs. the four spaces for the ternary changes up above. I don't have a preference as to how many spaces it should be, but it should be consistent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
cce73a8
to
3b93d7b
Compare
3b93d7b
to
ea2ab2d
Compare
... and some other cleanups PR-URL: #15207 Reviewed-By: Matteo Collina <[email protected]>
Landed in 9d9552f |
... and some other cleanups PR-URL: nodejs/node#15207 Reviewed-By: Matteo Collina <[email protected]>
... and some other cleanups PR-URL: #15207 Reviewed-By: Matteo Collina <[email protected]>
... and some other cleanups PR-URL: nodejs/node#15207 Reviewed-By: Matteo Collina <[email protected]>
custom promisify for
http2.connect()
and other miscellaneous improvements .Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
http2