GEODE-3075: fix an integration test. I think the test fails because another test doesn't clean up system properties when it's done.
Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/e62e8250 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/e62e8250 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/e62e8250 Branch: refs/heads/feature/GEODE-3109 Commit: e62e825090db50f77faaa3e222595ee1026d7a6c Parents: a3c66e1 Author: Galen OSullivan <gosulli...@pivotal.io> Authored: Wed Jun 21 14:01:01 2017 -0700 Committer: Hitesh Khamesra <hkhame...@pivotal.io> Committed: Mon Jun 26 09:26:23 2017 -0700 ---------------------------------------------------------------------- .../cache/tier/sockets/ServerConnectionFactoryIntegrationTest.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/e62e8250/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/ServerConnectionFactoryIntegrationTest.java ---------------------------------------------------------------------- diff --git a/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/ServerConnectionFactoryIntegrationTest.java b/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/ServerConnectionFactoryIntegrationTest.java index 82c4e54..9a1509f 100644 --- a/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/ServerConnectionFactoryIntegrationTest.java +++ b/geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/ServerConnectionFactoryIntegrationTest.java @@ -46,7 +46,9 @@ public class ServerConnectionFactoryIntegrationTest { @Test public void testNewProtocolHeaderLeadsToNewProtocolServerConnection() throws IOException { System.setProperty("geode.feature-protobuf-protocol", "true"); + CacheFactory cacheFactory = new CacheFactory(); + cacheFactory.set("mcast-port","0"); //sometimes it isn't due to other tests. Cache cache = cacheFactory.create(); CacheServer cacheServer = cache.addCacheServer();