Skip to content

Commit

Permalink
Bug 62842 - HTTP(S) Test Script Recorder : Brotli compression is not …
Browse files Browse the repository at this point in the history
…supported leading to "Content Encoding Error"

Bugzilla Id: 62842

git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1844791 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
pmouawad committed Oct 24, 2018
1 parent ac6ed38 commit 4e25366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -523,8 +523,7 @@ private String messageResponseHeaders(SampleResult res) {
if (HTTPConstants.HEADER_CONTENT_ENCODING.equalsIgnoreCase(parts[0])
&& (HTTPConstants.ENCODING_GZIP.equalsIgnoreCase(parts[1])
|| HTTPConstants.ENCODING_DEFLATE.equalsIgnoreCase(parts[1])
// TODO BROTLI not supported by HC4, so no uncompression would occur, add it once available
// || HTTPConstants.ENCODING_BROTLI.equalsIgnoreCase(parts[1])
|| HTTPConstants.ENCODING_BROTLI.equalsIgnoreCase(parts[1])
)
){
headerLines[i] = null; // We don't want this passed on to browser
Expand Down
1 change: 1 addition & 0 deletions xdocs/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ Summary
<h3>HTTP Samplers and Test Script Recorder</h3>
<ul>
<li><bug>62785</bug><pr>400</pr>Incomplete search path applied to the filenames used in the upload functionality of the HTTP sampler. Implemented by Artem Fedorov (artem.fedorov at blazemeter.com) and contributed by BlazeMeter.</li>
<li><bug>62842</bug>HTTP(S) Test Script Recorder : Brotli compression is not supported leading to "Content Encoding Error"</li>
</ul>

<h3>Other Samplers</h3>
Expand Down

0 comments on commit 4e25366

Please sign in to comment.