-
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: added example for setting Vary: Accept-Encoding header in zlib.md #26308
Conversation
doc/api/zlib.md
Outdated
@@ -107,6 +107,8 @@ const http = require('http'); | |||
const fs = require('fs'); | |||
http.createServer((request, response) => { | |||
const raw = fs.createReadStream('index.html'); | |||
// instruct the proxy to store both a compressed and uncompressed version of the resource |
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.
Hi, @mukulkhanna! Welcome and thanks for the pull request! This line above is (probably) going to cause the linter to complain. Could you wrap the comment at 80 characters and capitalize the first letter of the first word? (Might as well put a period/full-stop at the end while you're at it.)
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.
Oh, and you can check the linting with make lint
(or vcbuild lint
on Windows).
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.
Hi @Trott.
Sure, will do asap, thank you.
@Trott , |
Co-Authored-By: mukulkhanna <mukul18khanna@gmail.com>
Correct. CI is currently locked down while it is being used to prepare the security release that is scheduled to come out in the next several hours. |
Lite CI: https://ci.nodejs.org/job/node-test-pull-request-lite-pipeline/2709/ (Results should be reported in the GitHub widget below.) |
The 'first' commit message is failing the test. Is this the first commit of this pull request or is this about the most recent commit in the pull request. |
It's the first word of the last commit, but don't worry about it. Whoever lands this commit will need to squash the commits into one and modify the commit message to conform to our requirements anyway. The Travis stuff is advisory, but the other two checks from Jenkins are green and those are the ones that matter. |
Actually the Travis failure is the first commit: https://travis-ci.com/nodejs/node/jobs/180651661#L476-L486
In this case |
@richardlau Ooh, I didn't even consider that it's a bug. (And I'm the one that initially set up Travis to always lint the first commit and no other commit! You'd think I'd remember that. 😆) Nice catch! Sorry for the bad information! |
@Trott Can I close this pull request or should I wait for it to be merged ? |
Leave this pull request open. Thanks! |
FTR I've pushed out a fix to |
PR-URL: nodejs#26308 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Landed in 86f13d6. Thanks for the contribution! 🎉 |
PR-URL: #26308 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Resolving issue #25495.
Added example to set
Vary: Accept-Encoding
header with explanatory comment to doc/api/zlib.mdChecklist