You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2019/08/03 14:41:25 UTC

[jmeter] 02/02: Increase timeouts in SamplingNamingTest to reduce fails

This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit 53115ba81c1343ed065785c68d21ab66da3079f4
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Sat Aug 3 17:41:09 2019 +0300

    Increase timeouts in SamplingNamingTest to reduce fails
---
 .../org/apache/jmeter/protocol/http/sampler/SamplingNamingTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/sampler/SamplingNamingTest.java b/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/sampler/SamplingNamingTest.java
index 10ed255..5ac329d 100644
--- a/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/sampler/SamplingNamingTest.java
+++ b/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/sampler/SamplingNamingTest.java
@@ -79,8 +79,8 @@ public class SamplingNamingTest extends JMeterTestCase implements JMeterSerialTe
     private SampleResult[] doSample(String implementation) {
         HTTPSamplerProxy httpSamplerProxy = new HTTPSamplerProxy(implementation);
         httpSamplerProxy.setName(LABEL);
-        httpSamplerProxy.setConnectTimeout("500");
-        httpSamplerProxy.setResponseTimeout("1000");
+        httpSamplerProxy.setConnectTimeout("15000");
+        httpSamplerProxy.setResponseTimeout("10000");
         httpSamplerProxy.setImageParser(true);
         httpSamplerProxy.setMethod("GET");
         httpSamplerProxy.setPath(JMETER_HOME_PAGE);