Author: pmouawad
Date: Wed Oct 24 20:52:25 2018
New Revision: 1844791

URL: http://svn.apache.org/viewvc?rev=1844791&view=rev
Log:
Bug 62842 - HTTP(S) Test Script Recorder : Brotli compression is not supported 
leading to "Content Encoding Error"
Bugzilla Id: 62842

Modified:
    
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java
    jmeter/trunk/xdocs/changes.xml

Modified: 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java?rev=1844791&r1=1844790&r2=1844791&view=diff
==============================================================================
--- 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java 
(original)
+++ 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Proxy.java 
Wed Oct 24 20:52:25 2018
@@ -523,8 +523,7 @@ public class Proxy extends Thread {
                 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

Modified: jmeter/trunk/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1844791&r1=1844790&r2=1844791&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Wed Oct 24 20:52:25 2018
@@ -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>


Reply via email to