Skip to content
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

Do not try to pipe Gzip responses with no body #2176

Merged
merged 2 commits into from Apr 17, 2016

Conversation

simov
Copy link
Member

@simov simov commented Apr 16, 2016

Fixes #2045
Fixes #2177

@@ -921,7 +921,7 @@ Request.prototype.onRequestResponse = function (response) {
})

var responseContent
if (self.gzip) {
if (self.gzip && self.method !== 'HEAD') {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will fix the particular issue with HEAD requests, but will still cause issues if the response is empty for say a GET. A better way of handling would be to catch the Error from zlib.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Figuring out if the response is empty beforehand would be great, will think about it. I would rather not use try/catch if there is some other way to detect the condition.

Copy link
Member Author

@simov simov Apr 16, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately there is no reliable way to determine upfront if the response body is empty. And in fact the error is thrown because the gzip content is invalid which may happen even if you have a body.
So the least we can do is forward the error events so that the user can handle them accordingly. Which means that you will receive an error when the request method is GET, the gzip option is set to true, and there is no response body.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Anyway still this PR fixes the mentioned issue in the description which is the most common use case.

@czardoz you can open up another issue and point to this one, so we can have a discussion there.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done: #2177

@czardoz
Copy link
Contributor

czardoz commented Apr 16, 2016

Thanks, @simov!

@simov simov changed the title Do not try to pipe HEAD request responses when using gzip Do not try to pipe Gzip responses with no body Apr 17, 2016
@czardoz
Copy link
Contributor

czardoz commented Apr 17, 2016

LGTM! 🍰

@simov simov merged commit 7b4d206 into request:master Apr 17, 2016
@simov
Copy link
Member Author

simov commented Apr 17, 2016

Version 2.72 is out! ✨

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants