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/08 23:38:21 UTC

[geode-benchmarks] branch tune-proxy-haproxy updated: reinstate SNI proxy tasks

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

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


The following commit(s) were added to refs/heads/tune-proxy-haproxy by this push:
     new 7a245b2  reinstate SNI proxy tasks
7a245b2 is described below

commit 7a245b2640e704eb76a50f24b17e7f7dd7ff58f6
Author: Bill Burcham <bb...@pivotal.io>
AuthorDate: Mon Jun 8 16:37:59 2020 -0700

    reinstate SNI proxy tasks
---
 .../geode/benchmark/topology/ClientServerTopologyWithSNIProxy.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/topology/ClientServerTopologyWithSNIProxy.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/topology/ClientServerTopologyWithSNIProxy.java
index 29ef05b..ee5ade1 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/topology/ClientServerTopologyWithSNIProxy.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/topology/ClientServerTopologyWithSNIProxy.java
@@ -71,11 +71,11 @@ public class ClientServerTopologyWithSNIProxy {
 
     before(config, new StartLocatorSNI(LOCATOR_PORT), LOCATOR);
     before(config, new StartServerSNI(LOCATOR_PORT, SERVER_PORT_FOR_SNI), SERVER);
-//    before(config, new StartSniProxy(LOCATOR_PORT), PROXY);
+    before(config, new StartSniProxy(LOCATOR_PORT), PROXY);
     before(config, new StartClientSNI(LOCATOR_PORT), CLIENT);
 
     after(config, new StopClient(), CLIENT);
-//    after(config, new StopSniProxy(), PROXY);
+    after(config, new StopSniProxy(), PROXY);
   }
 
 }