You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bu...@apache.org on 2020/06/03 17:53:56 UTC

[geode-benchmarks] branch sni updated: setting HAproxy timeouts back down to 10s for some testing

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

burcham pushed a commit to branch sni
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/sni by this push:
     new c555447  setting HAproxy timeouts back down to 10s for some testing
c555447 is described below

commit c555447a0d47785666635daa7b2402d04dc71d41
Author: Bill Burcham <bb...@pivotal.io>
AuthorDate: Wed Jun 3 10:53:39 2020 -0700

    setting HAproxy timeouts back down to 10s for some testing
---
 .../main/java/org/apache/geode/benchmark/tasks/StartSniProxy.java   | 6 +++---
 .../java/org/apache/geode/benchmark/tasks/StartSniProxyTest.java    | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartSniProxy.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartSniProxy.java
index 296d8d9..2e5b316 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartSniProxy.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartSniProxy.java
@@ -104,9 +104,9 @@ public class StartSniProxy implements Task {
         + "  log stdout format raw local0 debug\n"
         + "defaults\n"
         + "  log global\n"
-        + "  timeout client 100s\n"
-        + "  timeout connect 100s\n"
-        + "  timeout server 100s\n"
+        + "  timeout client 10s\n"
+        + "  timeout connect 10s\n"
+        + "  timeout server 10s\n"
         + "frontend sniproxy\n"
         + "  bind *:15443\n"
         + "  mode tcp\n"
diff --git a/geode-benchmarks/src/test/java/org/apache/geode/benchmark/tasks/StartSniProxyTest.java b/geode-benchmarks/src/test/java/org/apache/geode/benchmark/tasks/StartSniProxyTest.java
index 00ffe9a..21803d3 100644
--- a/geode-benchmarks/src/test/java/org/apache/geode/benchmark/tasks/StartSniProxyTest.java
+++ b/geode-benchmarks/src/test/java/org/apache/geode/benchmark/tasks/StartSniProxyTest.java
@@ -35,9 +35,9 @@ class StartSniProxyTest {
         + "  log stdout format raw local0 debug\n"
         + "defaults\n"
         + "  log global\n"
-        + "  timeout client 100s\n"
-        + "  timeout connect 100s\n"
-        + "  timeout server 100s\n"
+        + "  timeout client 10s\n"
+        + "  timeout connect 10s\n"
+        + "  timeout server 10s\n"
         + "frontend sniproxy\n"
         + "  bind *:15443\n"
         + "  mode tcp\n"