This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new 90f6998fa7 Fix flaky brotli decompression batch test
90f6998fa7 is described below
commit 90f6998fa730f2d5c908bdcde4155cf17c1b399b
Author: Felix Schumacher <[email protected]>
AuthorDate: Fri Sep 27 11:18:45 2024 +0200
Fix flaky brotli decompression batch test
Sometimes in CI the brotli request will be redirected first, so try to not
show
those redirects in the sampler output. Maybe we can get that test to
working again.
---
bin/testfiles/ResponseDecompression.jmx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/testfiles/ResponseDecompression.jmx
b/bin/testfiles/ResponseDecompression.jmx
index 9350526d16..aa96379e50 100644
--- a/bin/testfiles/ResponseDecompression.jmx
+++ b/bin/testfiles/ResponseDecompression.jmx
@@ -160,8 +160,8 @@
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
<stringProp name="HTTPSampler.path">/</stringProp>
<stringProp name="HTTPSampler.method">GET</stringProp>
- <boolProp name="HTTPSampler.follow_redirects">true</boolProp>
- <boolProp name="HTTPSampler.auto_redirects">false</boolProp>
+ <boolProp name="HTTPSampler.follow_redirects">false</boolProp>
+ <boolProp name="HTTPSampler.auto_redirects">true</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>