-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
src: remove usage of AllocatedBuffer
from node_http2
#40584
src: remove usage of AllocatedBuffer
from node_http2
#40584
Conversation
Signed-off-by: Darshan Sen <[email protected]>
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@@ -323,7 +329,7 @@ void Http2Settings::Done(bool ack) { | |||
double duration = (end - startTime_) / 1e6; | |||
|
|||
Local<Value> argv[] = { | |||
ack ? v8::True(env()->isolate()) : v8::False(env()->isolate()), | |||
ack ? True(env()->isolate()) : False(env()->isolate()), |
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.
nit: for these two in particular I tend to prefer keeping the v8::
prefix. Not blocking tho
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.
@jasnell is it because these are similar to true
and false
?
Landed in ff536fa...f8035ec |
Signed-off-by: Darshan Sen <[email protected]> PR-URL: #40584 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
Signed-off-by: Darshan Sen <[email protected]> PR-URL: #40584 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
Signed-off-by: Darshan Sen <[email protected]> PR-URL: #40584 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
Signed-off-by: Darshan Sen [email protected]