GEODE-620 Geode SSL configuration is out of date the change in cipher suite caused suspect strings to be found in one of the WANSSLDUnitTest test cases.
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/d72986be Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/d72986be Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/d72986be Branch: refs/heads/feature/GEODE-1050 Commit: d72986be565457c31270326e491c2be98a5e8102 Parents: 05cd144 Author: Bruce Schuchardt <[email protected]> Authored: Thu Mar 17 10:54:03 2016 -0700 Committer: Bruce Schuchardt <[email protected]> Committed: Thu Mar 17 10:54:28 2016 -0700 ---------------------------------------------------------------------- .../gemstone/gemfire/internal/cache/wan/misc/WANSSLDUnitTest.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d72986be/geode-wan/src/test/java/com/gemstone/gemfire/internal/cache/wan/misc/WANSSLDUnitTest.java ---------------------------------------------------------------------- diff --git a/geode-wan/src/test/java/com/gemstone/gemfire/internal/cache/wan/misc/WANSSLDUnitTest.java b/geode-wan/src/test/java/com/gemstone/gemfire/internal/cache/wan/misc/WANSSLDUnitTest.java index 36f1226..3df01ef 100644 --- a/geode-wan/src/test/java/com/gemstone/gemfire/internal/cache/wan/misc/WANSSLDUnitTest.java +++ b/geode-wan/src/test/java/com/gemstone/gemfire/internal/cache/wan/misc/WANSSLDUnitTest.java @@ -96,6 +96,8 @@ public class WANSSLDUnitTest extends WANTestBase{ public void testSenderSSLReceiverNoSSL(){ IgnoredException.addIgnoredException("Acceptor received unknown"); IgnoredException.addIgnoredException("failed accepting client"); + IgnoredException.addIgnoredException("Error in connecting to peer"); + IgnoredException.addIgnoredException("Remote host closed connection during handshake"); Integer lnPort = (Integer)vm0.invoke(() -> WANTestBase.createFirstLocatorWithDSId( 1 )); Integer nyPort = (Integer)vm1.invoke(() -> WANTestBase.createFirstRemoteLocator( 2, lnPort ));
