-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Issue #7683 Use direct buffers for gzip input/output, if configured. #7764
Issue #7683 Use direct buffers for gzip input/output, if configured. #7764
Conversation
return; | ||
_inflater.setInput(compressed); | ||
} | ||
|
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.
(I moved this up because otherwise there is a call done to _inflater.inflate with no input set yet)
@jaroslawr this PR has test failures in both Java 11 and Java 17.
|
ee7077c
to
0b290c0
Compare
jetty-server/src/main/java/org/eclipse/jetty/server/handler/gzip/GzipHttpOutputInterceptor.java
Show resolved
Hide resolved
ab756b9
to
dc6fba1
Compare
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.
I'm happy with this change.
But I think we should also hear from @sbordet before merging.
jetty-server/src/main/java/org/eclipse/jetty/server/handler/gzip/GzipHttpOutputInterceptor.java
Show resolved
Hide resolved
9c2ba7e
to
0bd1fd1
Compare
The builds are taking much much longer with this latest change. |
@joakime Builds on other PRs/branches are now also timing out: |
@jaroslawr I see that now too. We are investigating. |
Merged (manually) into See: commit a357193 |
Fix for #7683.