-
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
doc: add more detail for callback of http res/req end method #181
Conversation
Add documentation for the callback parameter of http.ClientRequest's and http.ServerResponse's end methods.
Original PR URL: joyent/node#8851. BTW, there is still a chance that it could get merged at This pull request gets a 👍 from me, it doesn't make much sense to leave the callback parameter undocumented. |
Add documentation for the callback parameter of http.ClientRequest's and http.ServerResponse's end methods. PR-URL: #181 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Brendan Ashworth <[email protected]>
Landed in a553267, cheers! |
@brendanashworth For the future, could you rephrase "would you be interested in re-opening this PR at iojs" to "are you still interested in maintaining this PR?" and CC me on the issue? I'll try to make sure it gets into joyent/node, I'll try to make sure it makes it in here as well. |
@chrisdickinson sure! Thanks for the tip. |
* Add node_enable_deprecated_declarations_warnings GN flag Warnings about using deprecated declarations were disabled by default which made it hard to ensure that Node doesn't use V8's deprecated Apis. The flag allows enabling deprecated warnings and suppresses (hopefully) known issues with using deprecated functionality in c-api. The flag is off by default which preserves the existing behavior. Drive-by: fix deps/openssl/unofficial.gni by exposing the required OpenSSL compatibility level (OPENSSL_API_COMPAT) via public_configs.
* Add node_enable_deprecated_declarations_warnings GN flag Warnings about using deprecated declarations were disabled by default which made it hard to ensure that Node doesn't use V8's deprecated Apis. The flag allows enabling deprecated warnings and suppresses (hopefully) known issues with using deprecated functionality in c-api. The flag is off by default which preserves the existing behavior. Drive-by: fix deps/openssl/unofficial.gni by exposing the required OpenSSL compatibility level (OPENSSL_API_COMPAT) via public_configs.
* Add node_enable_deprecated_declarations_warnings GN flag Warnings about using deprecated declarations were disabled by default which made it hard to ensure that Node doesn't use V8's deprecated Apis. The flag allows enabling deprecated warnings and suppresses (hopefully) known issues with using deprecated functionality in c-api. The flag is off by default which preserves the existing behavior. Drive-by: fix deps/openssl/unofficial.gni by exposing the required OpenSSL compatibility level (OPENSSL_API_COMPAT) via public_configs.
Add documentation for the callback parameter of http.ClientRequest's and
http.ServerResponse's end methods.