You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ja...@apache.org on 2016/06/10 19:51:29 UTC

incubator-geode git commit: GEODE-1377: Fixing spark build issue due to rename of ConfigurationProperties

Repository: incubator-geode
Updated Branches:
  refs/heads/develop 1f74453db -> f8dd6ceea


GEODE-1377: Fixing spark build issue due to rename of ConfigurationProperties


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/f8dd6cee
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/f8dd6cee
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/f8dd6cee

Branch: refs/heads/develop
Commit: f8dd6ceea620c865c8bd5c5b5a018b6aa41a8a1e
Parents: 1f74453
Author: Jason Huynh <hu...@gmail.com>
Authored: Fri Jun 10 08:08:41 2016 -0700
Committer: Jason Huynh <hu...@gmail.com>
Committed: Fri Jun 10 08:08:41 2016 -0700

----------------------------------------------------------------------
 .../io/pivotal/geode/spark/connector/JavaApiIntegrationTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/f8dd6cee/geode-spark-connector/geode-spark-connector/src/it/java/ittest/io/pivotal/geode/spark/connector/JavaApiIntegrationTest.java
----------------------------------------------------------------------
diff --git a/geode-spark-connector/geode-spark-connector/src/it/java/ittest/io/pivotal/geode/spark/connector/JavaApiIntegrationTest.java b/geode-spark-connector/geode-spark-connector/src/it/java/ittest/io/pivotal/geode/spark/connector/JavaApiIntegrationTest.java
index 1bae89b..cd326f8 100644
--- a/geode-spark-connector/geode-spark-connector/src/it/java/ittest/io/pivotal/geode/spark/connector/JavaApiIntegrationTest.java
+++ b/geode-spark-connector/geode-spark-connector/src/it/java/ittest/io/pivotal/geode/spark/connector/JavaApiIntegrationTest.java
@@ -17,7 +17,7 @@
 package ittest.io.pivotal.geode.spark.connector;
 
 import com.gemstone.gemfire.cache.Region;
-import com.gemstone.gemfire.distributed.DistributedSystemConfigProperties;
+import com.gemstone.gemfire.distributed.ConfigurationProperties;
 import io.pivotal.geode.spark.connector.GeodeConnection;
 import io.pivotal.geode.spark.connector.GeodeConnectionConf;
 import io.pivotal.geode.spark.connector.GeodeConnectionConf$;
@@ -58,7 +58,7 @@ public class JavaApiIntegrationTest extends JUnitSuite {
   public static void setUpBeforeClass() throws Exception {
     // start geode cluster, and spark context
     Properties settings = new Properties();
-    settings.setProperty(DistributedSystemConfigProperties.CACHE_XML_FILE, "src/it/resources/test-retrieve-regions.xml");
+    settings.setProperty(ConfigurationProperties.CACHE_XML_FILE, "src/it/resources/test-retrieve-regions.xml");
     settings.setProperty("num-of-servers", Integer.toString(numServers));
     int locatorPort = GeodeCluster$.MODULE$.start(settings);