From 740814c74c4f68f15a9b148bf204d79bdc0c37fb Mon Sep 17 00:00:00 2001 From: William Burns Date: Tue, 28 Apr 2015 07:59:07 -0400 Subject: [PATCH] ISPN-5411 Repl GetAll/PutAll perf tests are using Dist * Changed DIST_SYNC to REPL_SYNC --- .../org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java | 2 +- .../org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java index dfa5ccde2af0..9c433598ea14 100644 --- a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java +++ b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplGetAllPerfTest.java @@ -17,6 +17,6 @@ protected int numberOfHotRodServers() { @Override protected ConfigurationBuilder clusterConfig() { return hotRodCacheConfiguration(getDefaultClusteredCacheConfig( - CacheMode.DIST_SYNC, false)); + CacheMode.REPL_SYNC, false)); } } diff --git a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java index a67cb35e2b99..92498deccdae 100644 --- a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java +++ b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/stress/ReplPutAllPerfTest.java @@ -17,6 +17,6 @@ protected int numberOfHotRodServers() { @Override protected ConfigurationBuilder clusterConfig() { return hotRodCacheConfiguration(getDefaultClusteredCacheConfig( - CacheMode.DIST_SYNC, false)); + CacheMode.REPL_SYNC, false)); } }