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 eb3c1df  use new SNI-ified tasks from topology
eb3c1df is described below

commit eb3c1df21d422b1a08ee34a0d69923229da73f0f
Author: Bill Burcham <bburc...@pivotal.io>
AuthorDate: Thu May 21 18:44:15 2020 -0700

    use new SNI-ified tasks from topology
---
 .../benchmark/topology/ClientServerTopologyWithSNIProxy.java     | 9 ++++-----
 1 file changed, 4 insertions(+), 5 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 969b49a..7f0439d 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
@@ -35,10 +35,9 @@ import org.apache.geode.benchmark.parameters.HeapParameters;
 import org.apache.geode.benchmark.parameters.JvmParameters;
 import org.apache.geode.benchmark.parameters.ProfilerParameters;
 import org.apache.geode.benchmark.tasks.DefineHostNamingsOffPlatformTask;
-import org.apache.geode.benchmark.tasks.StartClient;
 import org.apache.geode.benchmark.tasks.StartClientSNI;
-import org.apache.geode.benchmark.tasks.StartLocator;
-import org.apache.geode.benchmark.tasks.StartServer;
+import org.apache.geode.benchmark.tasks.StartLocatorSNI;
+import org.apache.geode.benchmark.tasks.StartServerSNI;
 import org.apache.geode.benchmark.tasks.StartSniProxy;
 import org.apache.geode.benchmark.tasks.StopSniProxy;
 import org.apache.geode.perftest.TestConfig;
@@ -73,8 +72,8 @@ public class ClientServerTopologyWithSNIProxy {
     Stream.concat(Roles.rolesFor(GEODE_PRODUCT), Stream.of(PROXY))
         .forEach(role -> before(config, new 
DefineHostNamingsOffPlatformTask(), role));
 
-    before(config, new StartLocator(LOCATOR_PORT), LOCATOR);
-    before(config, new StartServer(LOCATOR_PORT), SERVER);
+    before(config, new StartLocatorSNI(LOCATOR_PORT), LOCATOR);
+    before(config, new StartServerSNI(LOCATOR_PORT), SERVER);
     before(config, new StartSniProxy(LOCATOR_PORT), PROXY);
     before(config, new StartClientSNI(LOCATOR_PORT), CLIENT);
 

Reply via email to