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 21:24:49 UTC

[geode-benchmarks] branch sni updated: haproxy timeouts back up to 100s

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 d19c425  haproxy timeouts back up to 100s
d19c425 is described below

commit d19c425a79149c083608759a5d487c4e2776c763
Author: Bill Burcham <bb...@pivotal.io>
AuthorDate: Wed Jun 3 14:24:27 2020 -0700

    haproxy timeouts back up to 100s
---
 .../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 2e5b316..296d8d9 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 10s\n"
-        + "  timeout connect 10s\n"
-        + "  timeout server 10s\n"
+        + "  timeout client 100s\n"
+        + "  timeout connect 100s\n"
+        + "  timeout server 100s\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 21803d3..00ffe9a 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 10s\n"
-        + "  timeout connect 10s\n"
-        + "  timeout server 10s\n"
+        + "  timeout client 100s\n"
+        + "  timeout connect 100s\n"
+        + "  timeout server 100s\n"
         + "frontend sniproxy\n"
         + "  bind *:15443\n"
         + "  mode tcp\n"