You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ud...@apache.org on 2016/12/28 00:15:03 UTC

geode git commit: GEODE-419: fixed mcast-port property for test

Repository: geode
Updated Branches:
  refs/heads/develop 001f66242 -> ef199f203


GEODE-419: fixed mcast-port property for test


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

Branch: refs/heads/develop
Commit: ef199f203a42f9f70b5fd4f165b5b7722c9ce898
Parents: 001f662
Author: Udo Kohlmeyer <uk...@pivotal.io>
Authored: Tue Dec 27 16:14:58 2016 -0800
Committer: Udo Kohlmeyer <uk...@pivotal.io>
Committed: Tue Dec 27 16:14:58 2016 -0800

----------------------------------------------------------------------
 .../geode/internal/net/SSLConfigurationFactoryJUnitTest.java       | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/ef199f20/geode-core/src/test/java/org/apache/geode/internal/net/SSLConfigurationFactoryJUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/org/apache/geode/internal/net/SSLConfigurationFactoryJUnitTest.java b/geode-core/src/test/java/org/apache/geode/internal/net/SSLConfigurationFactoryJUnitTest.java
index 0304b16..344c03f 100644
--- a/geode-core/src/test/java/org/apache/geode/internal/net/SSLConfigurationFactoryJUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/internal/net/SSLConfigurationFactoryJUnitTest.java
@@ -15,6 +15,7 @@
 package org.apache.geode.internal.net;
 
 import static org.apache.geode.distributed.ConfigurationProperties.CLUSTER_SSL_ENABLED;
+import static org.apache.geode.distributed.ConfigurationProperties.MCAST_PORT;
 import static org.apache.geode.distributed.ConfigurationProperties.SSL_CIPHERS;
 import static org.apache.geode.distributed.ConfigurationProperties.SSL_CLUSTER_ALIAS;
 import static org.apache.geode.distributed.ConfigurationProperties.SSL_DEFAULT_ALIAS;
@@ -211,6 +212,7 @@ public class SSLConfigurationFactoryJUnitTest {
   public void getSSLConfigUsingJavaProperties() {
     Properties properties = new Properties();
     properties.setProperty(CLUSTER_SSL_ENABLED, "true");
+    properties.setProperty(MCAST_PORT,"0");
     System.setProperty(SSLConfigurationFactory.JAVAX_KEYSTORE, "keystore");
     System.setProperty(SSLConfigurationFactory.JAVAX_KEYSTORE_TYPE, "JKS");
     System.setProperty(SSLConfigurationFactory.JAVAX_KEYSTORE_PASSWORD, "keystorePassword");