[ 
https://issues.apache.org/jira/browse/GEODE-1319?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16215622#comment-16215622
 ] 

ASF GitHub Bot commented on GEODE-1319:
---------------------------------------

nabarunnag closed pull request #944: GEODE-1319: Awaitility clause added.
URL: https://github.com/apache/geode/pull/944
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/misc/PDXNewWanDUnitTest.java
 
b/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/misc/PDXNewWanDUnitTest.java
index 38a91e68c0..f2f4472f53 100644
--- 
a/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/misc/PDXNewWanDUnitTest.java
+++ 
b/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/misc/PDXNewWanDUnitTest.java
@@ -14,12 +14,15 @@
  */
 package org.apache.geode.internal.cache.wan.misc;
 
+import org.awaitility.Awaitility;
 import org.junit.Ignore;
 import org.junit.experimental.categories.Category;
 import org.junit.Test;
 
 import static org.junit.Assert.*;
 
+import java.util.concurrent.TimeUnit;
+
 import org.apache.geode.test.dunit.cache.internal.JUnit4CacheTestCase;
 import org.apache.geode.test.dunit.internal.JUnit4DistributedTestCase;
 import org.apache.geode.test.junit.categories.DistributedTest;
@@ -604,7 +607,6 @@ public void 
testWANPDX_PR_MultipleVM_ParallelSender_StartedLater() {
   }
 
 
-  @Category(FlakyTest.class) // GEODE-1319
   @Test
   public void testWANPDX_RR_SerialSenderWithFilter() {
     Integer lnPort = (Integer) vm0.invoke(() -> 
WANTestBase.createFirstLocatorWithDSId(1));
@@ -713,9 +715,13 @@ public void testWANPDX_PR_SerialSender_RemoteSite_Bounce() 
{
 
 
   public static void verifyFilterInvocation(int invocation) {
-    assertEquals(((PDXGatewayEventFilter) eventFilter).beforeEnqueueInvoked, 
invocation);
-    assertEquals(((PDXGatewayEventFilter) eventFilter).beforeTransmitInvoked, 
invocation);
-    assertEquals(((PDXGatewayEventFilter) eventFilter).afterAckInvoked, 
invocation);
+    Awaitility.await().atMost(60, TimeUnit.SECONDS).until(
+        () -> assertEquals(((PDXGatewayEventFilter) 
eventFilter).beforeEnqueueInvoked, invocation));
+    Awaitility.await().atMost(60, TimeUnit.SECONDS)
+        .until(() -> assertEquals(((PDXGatewayEventFilter) 
eventFilter).beforeTransmitInvoked,
+            invocation));
+    Awaitility.await().atMost(60, TimeUnit.SECONDS).until(
+        () -> assertEquals(((PDXGatewayEventFilter) 
eventFilter).afterAckInvoked, invocation));
   }
 
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


> CI failure: PDXNewWanDUnitTest.testWANPDX_RR_SerialSenderWithFilter
> -------------------------------------------------------------------
>
>                 Key: GEODE-1319
>                 URL: https://issues.apache.org/jira/browse/GEODE-1319
>             Project: Geode
>          Issue Type: Bug
>          Components: wan
>            Reporter: Eric Shu
>              Labels: ci
>
> {noformat}
> Error Message
> com.gemstone.gemfire.test.dunit.RMIException: While invoking 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest$$Lambda$502/325876188.run
>  in VM 3 running on Host zambia.gemstone.com with 8 VMs
> Stacktrace
> com.gemstone.gemfire.test.dunit.RMIException: While invoking 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest$$Lambda$502/325876188.run
>  in VM 3 running on Host zambia.gemstone.com with 8 VMs
>       at com.gemstone.gemfire.test.dunit.VM.invoke(VM.java:389)
>       at com.gemstone.gemfire.test.dunit.VM.invoke(VM.java:355)
>       at com.gemstone.gemfire.test.dunit.VM.invoke(VM.java:293)
>       at 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest.testWANPDX_RR_SerialSenderWithFilter(PDXNewWanDUnitTest.java:643)
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>       at java.lang.reflect.Method.invoke(Method.java:497)
>       at junit.framework.TestCase.runTest(TestCase.java:176)
>       at junit.framework.TestCase.runBare(TestCase.java:141)
>       at junit.framework.TestResult$1.protect(TestResult.java:122)
>       at junit.framework.TestResult.runProtected(TestResult.java:142)
>       at junit.framework.TestResult.run(TestResult.java:125)
>       at junit.framework.TestCase.run(TestCase.java:129)
>       at junit.framework.TestSuite.runTest(TestSuite.java:252)
>       at junit.framework.TestSuite.run(TestSuite.java:247)
>       at 
> org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:86)
>       at 
> org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecuter.runTestClass(JUnitTestClassExecuter.java:105)
>       at 
> org.gradle.api.internal.tasks.testing.junit.JUnitTestClassExecuter.execute(JUnitTestClassExecuter.java:56)
>       at 
> org.gradle.api.internal.tasks.testing.junit.JUnitTestClassProcessor.processTestClass(JUnitTestClassProcessor.java:64)
>       at 
> org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.processTestClass(SuiteTestClassProcessor.java:50)
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>       at java.lang.reflect.Method.invoke(Method.java:497)
>       at 
> org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:35)
>       at 
> org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24)
>       at 
> org.gradle.messaging.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:32)
>       at 
> org.gradle.messaging.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:93)
>       at com.sun.proxy.$Proxy2.processTestClass(Unknown Source)
>       at 
> org.gradle.api.internal.tasks.testing.worker.TestWorker.processTestClass(TestWorker.java:106)
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>       at java.lang.reflect.Method.invoke(Method.java:497)
>       at 
> org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:35)
>       at 
> org.gradle.messaging.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24)
>       at 
> org.gradle.messaging.remote.internal.hub.MessageHub$Handler.run(MessageHub.java:360)
>       at 
> org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:54)
>       at 
> org.gradle.internal.concurrent.StoppableExecutorImpl$1.run(StoppableExecutorImpl.java:40)
>       at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
>       at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
>       at java.lang.Thread.run(Thread.java:745)
> Caused by: junit.framework.AssertionFailedError: expected:<0> but was:<1>
>       at junit.framework.Assert.fail(Assert.java:57)
>       at junit.framework.Assert.failNotEquals(Assert.java:329)
>       at junit.framework.Assert.assertEquals(Assert.java:78)
>       at junit.framework.Assert.assertEquals(Assert.java:234)
>       at junit.framework.Assert.assertEquals(Assert.java:241)
>       at junit.framework.TestCase.assertEquals(TestCase.java:409)
>       at 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest.verifyFilterInvocation(PDXNewWanDUnitTest.java:734)
>       at 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest.lambda$testWANPDX_RR_SerialSenderWithFilter$84651174$7(PDXNewWanDUnitTest.java:643)
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>       at java.lang.reflect.Method.invoke(Method.java:497)
>       at hydra.MethExecutor.executeObject(MethExecutor.java:268)
>       at 
> com.gemstone.gemfire.test.dunit.standalone.RemoteDUnitVM.executeMethodOnObject(RemoteDUnitVM.java:82)
>       at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>       at java.lang.reflect.Method.invoke(Method.java:497)
>       at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:323)
>       at sun.rmi.transport.Transport$1.run(Transport.java:200)
>       at sun.rmi.transport.Transport$1.run(Transport.java:197)
>       at java.security.AccessController.doPrivileged(Native Method)
>       at sun.rmi.transport.Transport.serviceCall(Transport.java:196)
>       at 
> sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:568)
>       at 
> sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:826)
>       at 
> sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$95(TCPTransport.java:683)
>       at java.security.AccessController.doPrivileged(Native Method)
>       at 
> sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:682)
>       ... 3 more
> Standard Output
> Previously run tests: [WANManagementDUnitTest, ClusterConfigurationDUnitTest, 
> TestRemoteClusterDUnitTest, UpdateVersionDUnitTest, 
> CacheClientNotifierDUnitTest, WanValidationsDUnitTest, PDXNewWanDUnitTest]
> [vm_6][info 2016/04/27 21:34:29.479 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1546442229.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1546442229@2b15b2e8
> [vm_6][info 2016/04/27 21:34:29.480 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1546442229.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1546442229@2b15b2e8
>  (took 0 ms)
> [vm_0][info 2016/04/27 21:34:29.492 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: com.gemstone.gemfire.test.dunit.NamedRunnable.run 
> with 0 args on object: runnable(setupVM)
> [vm_0][info 2016/04/27 21:34:29.492 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from com.gemstone.gemfire.test.dunit.NamedRunnable.run with 0 args on 
> object: runnable(setupVM) (took 0 ms)
> [vm_1][info 2016/04/27 21:34:29.493 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: com.gemstone.gemfire.test.dunit.NamedRunnable.run 
> with 0 args on object: runnable(setupVM)
> [vm_1][info 2016/04/27 21:34:29.493 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from com.gemstone.gemfire.test.dunit.NamedRunnable.run with 0 args on 
> object: runnable(setupVM) (took 0 ms)
> [vm_4][info 2016/04/27 21:34:29.494 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: com.gemstone.gemfire.test.dunit.NamedRunnable.run 
> with 0 args on object: runnable(setupVM)
> [vm_4][info 2016/04/27 21:34:29.495 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from com.gemstone.gemfire.test.dunit.NamedRunnable.run with 0 args on 
> object: runnable(setupVM) (took 0 ms)
> [vm_7][info 2016/04/27 21:34:29.480 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261@2892534
> [vm_7][info 2016/04/27 21:34:29.480 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261@2892534
>  (took 0 ms)
> [setup] START TEST 
> PDXNewWanDUnitTest.testWANPDX_PR_MultipleVM_SerialSender_StartedLater
> [vm_6][info 2016/04/27 21:34:29.496 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: com.gemstone.gemfire.test.dunit.NamedRunnable.run 
> with 0 args on object: runnable(setupVM)
> [vm_6][info 2016/04/27 21:34:29.496 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from com.gemstone.gemfire.test.dunit.NamedRunnable.run with 0 args on 
> object: runnable(setupVM) (took 0 ms)
> [vm_0][info 2016/04/27 21:34:29.497 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$49/2005488079.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$49/2005488079@23e809b6
> [vm_0][info 2016/04/27 21:34:29.497 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$49/2005488079.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$49/2005488079@23e809b6
>  (took 0 ms)
> [vm_1][info 2016/04/27 21:34:29.497 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$14/456627743.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$14/456627743@44d573ab
> [vm_1][info 2016/04/27 21:34:29.497 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$14/456627743.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$14/456627743@44d573ab
>  (took 0 ms)
> [vm_4][info 2016/04/27 21:34:29.499 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/1073447817.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/1073447817@60a7bd72
> [vm_4][info 2016/04/27 21:34:29.499 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/1073447817.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/1073447817@60a7bd72
>  (took 0 ms)
> [vm_7][info 2016/04/27 21:34:29.496 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: com.gemstone.gemfire.test.dunit.NamedRunnable.run 
> with 0 args on object: runnable(setupVM)
> [vm_7][info 2016/04/27 21:34:29.496 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from com.gemstone.gemfire.test.dunit.NamedRunnable.run with 0 args on 
> object: runnable(setupVM) (took 0 ms)
> [info 2016/04/27 21:34:29.502 PDT <Test worker> tid=0xa] <ExpectedException 
> action=add>Connection refused</ExpectedException>
> [info 2016/04/27 21:34:29.502 PDT <Test worker> tid=0xa] <ExpectedException 
> action=add>Connection refused</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.500 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/2145277533.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/2145277533@12712b27
> [vm_6][info 2016/04/27 21:34:29.500 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/2145277533.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/2145277533@12712b27
>  (took 0 ms)
> [vm_0][info 2016/04/27 21:34:29.502 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_0][info 2016/04/27 21:34:29.503 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_0][info 2016/04/27 21:34:29.503 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_0][info 2016/04/27 21:34:29.503 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_1][info 2016/04/27 21:34:29.503 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_1][info 2016/04/27 21:34:29.503 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_1][info 2016/04/27 21:34:29.503 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_1][info 2016/04/27 21:34:29.503 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_4][info 2016/04/27 21:34:29.504 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_4][info 2016/04/27 21:34:29.505 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_4][info 2016/04/27 21:34:29.505 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_4][info 2016/04/27 21:34:29.505 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_7][info 2016/04/27 21:34:29.500 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/1900334886.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/1900334886@157cd937
> [vm_7][info 2016/04/27 21:34:29.501 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/1900334886.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$4/1900334886@157cd937
>  (took 0 ms)
> [info 2016/04/27 21:34:29.506 PDT <Test worker> tid=0xa] <ExpectedException 
> action=add>Software caused connection abort</ExpectedException>
> [info 2016/04/27 21:34:29.506 PDT <Test worker> tid=0xa] <ExpectedException 
> action=add>Software caused connection abort</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.506 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_6][info 2016/04/27 21:34:29.506 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.506 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.506 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_0][info 2016/04/27 21:34:29.507 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_0][info 2016/04/27 21:34:29.507 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_0][info 2016/04/27 21:34:29.507 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_0][info 2016/04/27 21:34:29.507 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_1][info 2016/04/27 21:34:29.507 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_1][info 2016/04/27 21:34:29.507 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_1][info 2016/04/27 21:34:29.507 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_1][info 2016/04/27 21:34:29.507 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_4][info 2016/04/27 21:34:29.509 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_4][info 2016/04/27 21:34:29.509 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_4][info 2016/04/27 21:34:29.509 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_4][info 2016/04/27 21:34:29.509 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_7][info 2016/04/27 21:34:29.506 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_7][info 2016/04/27 21:34:29.506 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_7][info 2016/04/27 21:34:29.506 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=add>Connection 
> refused</ExpectedException>
> [vm_7][info 2016/04/27 21:34:29.506 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [info 2016/04/27 21:34:29.510 PDT <Test worker> tid=0xa] <ExpectedException 
> action=add>Connection reset</ExpectedException>
> [info 2016/04/27 21:34:29.511 PDT <Test worker> tid=0xa] <ExpectedException 
> action=add>Connection reset</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.510 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_6][info 2016/04/27 21:34:29.510 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.510 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.510 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_0][info 2016/04/27 21:34:29.511 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_0][info 2016/04/27 21:34:29.511 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_0][info 2016/04/27 21:34:29.511 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_0][info 2016/04/27 21:34:29.511 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_1][info 2016/04/27 21:34:29.511 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_1][info 2016/04/27 21:34:29.511 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_1][info 2016/04/27 21:34:29.511 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_1][info 2016/04/27 21:34:29.511 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_4][info 2016/04/27 21:34:29.513 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_4][info 2016/04/27 21:34:29.513 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_4][info 2016/04/27 21:34:29.513 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_4][info 2016/04/27 21:34:29.513 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_7][info 2016/04/27 21:34:29.510 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_7][info 2016/04/27 21:34:29.510 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_7][info 2016/04/27 21:34:29.510 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=add>Software caused connection 
> abort</ExpectedException>
> [vm_7][info 2016/04/27 21:34:29.510 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_6][info 2016/04/27 21:34:29.514 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_6][info 2016/04/27 21:34:29.514 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.514 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_6][info 2016/04/27 21:34:29.514 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_0][info 2016/04/27 21:34:29.525 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest$$Lambda$96/485897546.call
>  with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest$$Lambda$96/485897546@56a9d408
> [vm_0]distributed system properties: {distributed-system-id=1, 
> start-locator=localhost[21919],server=true,peer=true,hostname-for-clients=localhost,
>  mcast-port=0, log-level=info, off-heap-memory-size=300m, 
> disable-auto-reconnect=true, enable-cluster-configuration=false, 
> locators=localhost[21919], use-cluster-configuration=false}
> [vm_0][info 2016/04/27 21:34:29.528 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] 
> [vm_0]---------------------------------------------------------------------------
> [vm_0]  
> [vm_0]  Licensed to the Apache Software Foundation (ASF) under one or more
> [vm_0]  contributor license agreements.  See the NOTICE file distributed with 
> this
> [vm_0]  work for additional information regarding copyright ownership.
> [vm_0]   
> [vm_0]  The ASF licenses this file to You under the Apache License, Version 
> 2.0
> [vm_0]  (the "License"); you may not use this file except in compliance with 
> the
> [vm_0]  License.  You may obtain a copy of the License at
> [vm_0]  
> [vm_0]  http://www.apache.org/licenses/LICENSE-2.0
> [vm_0]  
> [vm_0]  Unless required by applicable law or agreed to in writing, software
> [vm_0]  distributed under the License is distributed on an "AS IS" BASIS, 
> WITHOUT
> [vm_0]  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See 
> the
> [vm_0]  License for the specific language governing permissions and 
> limitations
> [vm_0]  under the License.
> [vm_0]  
> [vm_0]---------------------------------------------------------------------------
> [vm_0]Java version:   1.0.0-incubating.M3-SNAPSHOT build 042716 2016-04-27 
> 15:10:36 -0700 javac 1.8.0_66
> [vm_0]Native version: native code unavailable
> [vm_0]Source revision: 46535f28e4740ed9b6da87bbb27c39d0c13b3da4
> [vm_0]Source repository: develop
> [vm_0]Running on: zambia.gemstone.com/10.118.32.91, 4 cpu(s), amd64 Linux 
> 2.6.18-262.el5
> [vm_0]Process ID: 6771
> [vm_0]User: build
> [vm_0]Current dir: 
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-wan/build/distributedTest/dunit/vm0
> [vm_0]Home dir: /home/build
> [vm_0]Command Line Parameters:
> [vm_0]  -Dgemfire.DUnitLauncher.RMI_PORT=29335
> [vm_0]  -Dgemfire.DUnitLauncher.VM_NUM=0
> [vm_0]  
> -DWORKSPACE_DIR=/zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-wan/build/distributedTest/.
> [vm_0]  -DlogLevel=info
> [vm_0]  
> -Djava.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
> [vm_0]  -Xrunjdwp:transport=dt_socket,server=y,suspend=n
> [vm_0]  -XX:+HeapDumpOnOutOfMemoryError
> [vm_0]  -Xmx512m
> [vm_0]  -Dgemfire.DEFAULT_MAX_OPLOG_SIZE=10
> [vm_0]  -Dgemfire.disallowMcastDefaults=true
> [vm_0]  -ea
> [vm_0]  -XX:+PrintGC
> [vm_0]  -XX:+PrintGCDetails
> [vm_0]  -XX:+PrintGCTimeStamps
> [vm_0]  -DdummyArg=true
> [vm_0]Class Path:
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-wan/build/classes/test
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-wan/build/resources/test
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-wan/build/classes/main
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-wan/build/resources/main
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-core/build/classes/test
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-core/build/resources/test
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/com.github.stefanbirkner/system-rules/1.15.0/355adc877e54a2eb6b42a3d2801cdf8329f215d8/system-rules-1.15.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/com.google.code.tempus-fugit/tempus-fugit/1.1/4f47af53091985a3e3581af60e432a556a69e2cd/tempus-fugit-1.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/com.jayway.awaitility/awaitility/1.7.0/e4fa7955cab67d880e4868a0795cce3498ea7bf2/awaitility-1.7.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/edu.umd.cs.mtc/multithreadedtc/1.01/43fbc1110d7e43cf79e415ef32036975ad85944c/multithreadedtc-1.01.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/eu.codearte.catch-exception/catch-exception/1.4.4/c54da7072e0ccaf1fb92118e5e6e24335039006e/catch-exception-1.4.4.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/eu.codearte.catch-exception/catch-throwable/1.4.4/e152e6679c9e57934cbf4126214e324c55603f82/catch-throwable-1.4.4.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/junit/junit/4.12/2973d150c0dc1fefe998f834810d68f278ea58ec/junit-4.12.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.assertj/assertj-core/3.2.0/eded8ad93bf57af8eff233c1751550bd40349ebb/assertj-core-3.2.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.mockito/mockito-core/1.10.19/e8546f5bef4e061d8dd73895b4e8f40e3fe6effe/mockito-core-1.10.19.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.hamcrest/hamcrest-all/1.3/63a21ebc981131004ad02e0434e799fd7f3a8d5a/hamcrest-all-1.3.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.jmock/jmock-junit4/2.8.1/f32f596560c90e68aa2ef6d3fae8022475dbb9d0/jmock-junit4-2.8.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.jmock/jmock-legacy/2.8.1/ec286ef0c3f662a2260a864c89ebfbb5da3bd4de/jmock-legacy-2.8.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/pl.pragmatists/JUnitParams/1.0.4/e311bbf8fe3f0d837d6d38fbd0a3cf00dc909704/JUnitParams-1.0.4.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-junit/build/libs/geode-junit-1.0.0-incubating.M3-SNAPSHOT.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/cglib/cglib/3.1/1f1cb6c7a7479e0c7fd7987109e503914bebe84a/cglib-3.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.ow2.asm/asm/5.0.3/dcc2193db20e19e1feca8b1240dbbc4e190824fa/asm-5.0.3.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.hamcrest/hamcrest-library/1.3/4785a3c21320980282f9f33d0d1264a69040538f/hamcrest-library-1.3.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/cglib/cglib-nodep/3.1/aa83efbd1aedc4f26bdf00e7ea78191483f2c9b3/cglib-nodep-3.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.objenesis/objenesis/2.1/87c0ea803b69252868d09308b4618f766f135a96/objenesis-2.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.jmock/jmock/2.8.1/aba0ed5962f5238421a2fee706d98133714590d0/jmock-2.8.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.jmock/jmock-testjar/2.8.1/f70febf8ef161533adb2ef4cca0adbd3cc56f125/jmock-testjar-2.8.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.beanshell/bsh/1.3.0/1fed35193d56470f46c0fb33917e3e82c0c42358/bsh-1.3.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.hamcrest/hamcrest-core/1.3/42a25dc3219429f0e5d060061f71acb49bf010a0/hamcrest-core-1.3.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-core/build/libs/geode-core-1.0.0-incubating.M3-SNAPSHOT.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/com.github.stephenc.findbugs/findbugs-annotations/1.3.9-1/a6b11447635d80757d64b355bed3c00786d86801/findbugs-annotations-1.3.9-1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.jgroups/jgroups/3.6.8.Final/9cc380b3a82a786addd06dc04d1470d1c44a51cb/jgroups-3.6.8.Final.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/antlr/antlr/2.7.7/83cd2cd674a217ade95a4bb83a8a14f351f48bd0/antlr-2.7.7.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.2.0/3a63aacffcc0f91f0920ddfa33a3833018c21f72/jackson-databind-2.2.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/commons-io/commons-io/2.3/cd8d6ffc833cc63c30d712a180f4663d8f55799b/commons-io-2.3.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/commons-lang/commons-lang/2.5/b0236b252e86419eef20c31a44579d2aee2f0a69/commons-lang-2.5.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/commons-modeler/commons-modeler/2.0/177f22811ed71980e5cda66de05bd070e4da3ee3/commons-modeler-2.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/io.netty/netty-all/4.0.4.Final/925914146e37041255ea18ae2d5982f9589c784d/netty-all-4.0.4.Final.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/it.unimi.dsi/fastutil/7.0.2/20876232e2cd12563507e4c9e85bd7948bc0656f/fastutil-7.0.2.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/javax.mail/javax.mail-api/1.4.5/42af3cb44d5ec658adc8a4c7354ac0d19547c4ca/javax.mail-api-1.4.5.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/javax.resource/javax.resource-api/1.7/ae40e0864eb1e92c48bf82a2a3399cbbf523fb79/javax.resource-api-1.7.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/mx4j/mx4j/3.0.1/991089e21fce990b84d9e06e9ed9cc00d518ae56/mx4j-3.0.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/mx4j/mx4j-remote/3.0.1/f491951e754c24e7487efdd9f36d0677bfeb4184/mx4j-remote-3.0.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/mx4j/mx4j-tools/3.0.1/df853af9fe34d4eb6f849a1b5936fddfcbe67751/mx4j-tools-3.0.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/net.java.dev.jna/jna/4.0.0/9b3a11c613ec3fd3440af4103b12c3de82d38b6e/jna-4.0.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.5/e7fd981408caba8a0c0fb276413562468d260160/log4j-api-2.5.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.5/7ed845de1dfe070d43511fab321784e6c4118398/log4j-core-2.5.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-webapp/9.3.6.v20151106/9cf00a3b7b2c1b6e024bb687e3719e1b0ff9e899/jetty-webapp-9.3.6.v20151106.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.springframework.shell/spring-shell/1.1.0.RELEASE/32fcf5aacf7bd5d997dbf2f8f95ed9369d81d9c0/spring-shell-1.1.0.RELEASE.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.xerial.snappy/snappy-java/1.1.1.6/e3f12835a135c0d253bee4dbbe74d37ce35d7269/snappy-java-1.1.1.6.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-common/build/libs/geode-common-1.0.0-incubating.M3-SNAPSHOT.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-joptsimple/build/libs/geode-joptsimple-1.0.0-incubating.M3-SNAPSHOT.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-json/build/libs/geode-json-1.0.0-incubating.M3-SNAPSHOT.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.8/81da0c3980e30744184bec4706cf6f4508d3d7ea/jansi-1.8.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-slf4j-impl/2.5/d1e34a4525e08873703fdaad6c6284f944f8ca8f/log4j-slf4j-impl-2.5.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-jcl/2.5/4d14933326d067ac1f16790325ac2eb997003bd2/log4j-jcl-2.5.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-jul/2.5/2c679bb8b6ec7e204615045c9943e6b4dbfd45ab/log4j-jul-2.5.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.2.0/3539928f64ce8c37340a012e974990ba1478109a/jackson-annotations-2.2.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.2.0/45b1e51668ad002d47a0e88dfab6a0b4416246eb/jackson-core-2.2.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/javax.activation/activation/1.1/e6cb541461c2834bdea3eb920f1884d1eb508b50/activation-1.1.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/javax.transaction/javax.transaction-api/1.2/d81aff979d603edd90dcd8db2abc1f4ce6479e3e/javax.transaction-api-1.2.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-xml/9.3.6.v20151106/b22e22977ea6c08751f8c945bb0785c35f9db28a/jetty-xml-9.3.6.v20151106.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-servlet/9.3.6.v20151106/62c03d6c7203735d4e28e4e78e22df38152f01ef/jetty-servlet-9.3.6.v20151106.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/jline/jline/2.12/ce9062c6a125e0f9ad766032573c041ae8ecc986/jline-2.12.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.springframework/spring-core/4.2.4.RELEASE/160ccd89230753d4f49477a967f5876b034d9745/spring-core-4.2.4.RELEASE.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.slf4j/slf4j-api/1.7.12/8e20852d05222dc286bf1c71d78d0531e177c317/slf4j-api-1.7.12.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/commons-logging/commons-logging/1.2/4bfc12adfe4842bf07b657f0369c4cb522955686/commons-logging-1.2.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-util/9.3.6.v20151106/8721c8e670c11ea19005c567733453956b6243fc/jetty-util-9.3.6.v20151106.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-security/9.3.6.v20151106/e44ffc80834a7f78a5b0ed15c54b875956772242/jetty-security-9.3.6.v20151106.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-server/9.3.6.v20151106/d9c43a1b20ede7e3c456237d71b4cce1dff5457a/jetty-server-9.3.6.v20151106.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/javax.servlet/javax.servlet-api/3.1.0/3cd63d075497751784b2fa84be59432f4905bf7c/javax.servlet-api-3.1.0.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-http/9.3.6.v20151106/c2bba60bc1f9fe5779ac20ab30232bf9a89d3e52/jetty-http-9.3.6.v20151106.jar
> [vm_0]  
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-io/9.3.6.v20151106/9e59bde867e55d8c93cdd682d12317733ef5339/jetty-io-9.3.6.v20151106.jar
> [vm_0]Library Path:
> [vm_0]  /usr/java/packages/lib/amd64
> [vm_0]  /usr/lib64
> [vm_0]  /lib64
> [vm_0]  /lib
> [vm_0]  /usr/lib
> [vm_0]System Properties:
> [vm_0]    WORKSPACE_DIR = 
> /zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-wan/build/distributedTest/.
> [vm_0]    awt.toolkit = sun.awt.X11.XToolkit
> [vm_0]    dummyArg = true
> [vm_0]    file.encoding = ANSI_X3.4-1968
> [vm_0]    file.encoding.pkg = sun.io
> [vm_0]    file.separator = /
> [vm_0]    gemfire.DEFAULT_MAX_OPLOG_SIZE = 10
> [vm_0]    gemfire.DUnitLauncher.LAUNCHED = true
> [vm_0]    gemfire.DUnitLauncher.RMI_PORT = 29335
> [vm_0]    gemfire.DUnitLauncher.VM_NUM = 0
> [vm_0]    gemfire.disallowMcastDefaults = true
> [vm_0]    gemfire.free-off-heap-memory = true
> [vm_0]    java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment
> [vm_0]    java.awt.printerjob = sun.print.PSPrinterJob
> [vm_0]    java.class.version = 52.0
> [vm_0]    java.endorsed.dirs = 
> /export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/endorsed
> [vm_0]    java.ext.dirs = 
> /export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/ext:/usr/java/packages/lib/ext
> [vm_0]    java.home = 
> /export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre
> [vm_0]    java.io.tmpdir = /tmp
> [vm_0]    java.runtime.name = Java(TM) SE Runtime Environment
> [vm_0]    java.runtime.version = 1.8.0_66-b17
> [vm_0]    java.specification.name = Java Platform API Specification
> [vm_0]    java.specification.vendor = Oracle Corporation
> [vm_0]    java.specification.version = 1.8
> [vm_0]    java.vendor = Oracle Corporation
> [vm_0]    java.vendor.url = http://java.oracle.com/
> [vm_0]    java.vendor.url.bug = http://bugreport.sun.com/bugreport/
> [vm_0]    java.version = 1.8.0_66
> [vm_0]    java.vm.info = mixed mode
> [vm_0]    java.vm.name = Java HotSpot(TM) 64-Bit Server VM
> [vm_0]    java.vm.specification.name = Java Virtual Machine Specification
> [vm_0]    java.vm.specification.vendor = Oracle Corporation
> [vm_0]    java.vm.specification.version = 1.8
> [vm_0]    java.vm.vendor = Oracle Corporation
> [vm_0]    java.vm.version = 25.66-b17
> [vm_0]    jna.platform.library.path = /usr/lib64:/lib64:/usr/lib:/lib
> [vm_0]    jnidispatch.path = /tmp/jna-94094958/jna6009071364880806073.tmp
> [vm_0]    line.separator = 
> [vm_0]    logLevel = info
> [vm_0]    membership_port_range_end = 65535
> [vm_0]    membership_port_range_start = 1024
> [vm_0]    os.version = 2.6.18-262.el5
> [vm_0]    p2p.idleConnectionTimeout = 60000
> [vm_0]    p2p.shareSockets = true
> [vm_0]    p2p.useSSL = false
> [vm_0]    path.separator = :
> [vm_0]    sun.arch.data.model = 64
> [vm_0]    sun.boot.class.path = 
> /export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/resources.jar:/export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/rt.jar:/export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/sunrsasign.jar:/export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/jsse.jar:/export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/jce.jar:/export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/charsets.jar:/export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/jfr.jar:/export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/classes
> [vm_0]    sun.boot.library.path = 
> /export/java/users/java_share/jdk/1.8.0_66/x86_64.linux/jre/lib/amd64
> [vm_0]    sun.cpu.endian = little
> [vm_0]    sun.cpu.isalist = 
> [vm_0]    sun.io.unicode.encoding = UnicodeLittle
> [vm_0]    sun.java.command = 
> com.gemstone.gemfire.test.dunit.standalone.ChildVM
> [vm_0]    sun.java.launcher = SUN_STANDARD
> [vm_0]    sun.jnu.encoding = ANSI_X3.4-1968
> [vm_0]    sun.management.compiler = HotSpot 64-Bit Tiered Compilers
> [vm_0]    sun.nio.ch.bugLevel = 
> [vm_0]    sun.os.patch.level = unknown
> [vm_0]    user.country = US
> [vm_0]    user.language = en
> [vm_0]    user.timezone = America/Los_Angeles
> [vm_0]Log4J 2 Configuration:
> [vm_0]    
> jar:file:/zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-core/build/libs/geode-core-1.0.0-incubating.M3-SNAPSHOT.jar!/log4j2.xml
> [vm_0]---------------------------------------------------------------------------
> [vm_0][info 2016/04/27 21:34:29.528 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Startup Configuration:
> [vm_0] ### GemFire Properties defined with api ###
> [vm_0]disable-auto-reconnect=true
> [vm_0]distributed-system-id=1
> [vm_0]enable-cluster-configuration=false
> [vm_0]locators=localhost[21919]
> [vm_0]log-level=info
> [vm_0]mcast-port=0
> [vm_0]off-heap-memory-size=300m
> [vm_0]start-locator=localhost[21919],server=true,peer=true,hostname-for-clients=localhost
> [vm_0]use-cluster-configuration=false
> [vm_0]### GemFire Properties using default values ###
> [vm_0]ack-severe-alert-threshold=0
> [vm_0]ack-wait-threshold=15
> [vm_0]archive-disk-space-limit=0
> [vm_0]archive-file-size-limit=0
> [vm_0]async-distribution-timeout=0
> [vm_0]async-max-queue-size=8
> [vm_0]async-queue-timeout=60000
> [vm_0]bind-address=
> [vm_0]cache-xml-file=cache.xml
> [vm_0]cluster-configuration-dir=/zambia1/users/build/jenkins/blds/workspace/Geode_develop_DistributedTests/geode-wan/build/distributedTest/dunit/vm0
> [vm_0]cluster-ssl-ciphers=any
> [vm_0]cluster-ssl-enabled=false
> [vm_0]cluster-ssl-keystore=
> [vm_0]cluster-ssl-keystore-password=
> [vm_0]cluster-ssl-keystore-type=
> [vm_0]cluster-ssl-protocols=any
> [vm_0]cluster-ssl-require-authentication=true
> [vm_0]cluster-ssl-truststore=
> [vm_0]cluster-ssl-truststore-password=
> [vm_0]conflate-events=server
> [vm_0]conserve-sockets=true
> [vm_0]delta-propagation=true
> [vm_0]deploy-working-dir=.
> [vm_0]disable-tcp=false
> [vm_0]distributed-transactions=false
> [vm_0]durable-client-id=
> [vm_0]durable-client-timeout=300
> [vm_0]enable-network-partition-detection=false
> [vm_0]enable-time-statistics=false
> [vm_0]enforce-unique-host=false
> [vm_0]gateway-ssl-ciphers=any
> [vm_0]gateway-ssl-enabled=false
> [vm_0]gateway-ssl-keystore=
> [vm_0]gateway-ssl-keystore-password=
> [vm_0]gateway-ssl-keystore-type=
> [vm_0]gateway-ssl-protocols=any
> [vm_0]gateway-ssl-require-authentication=true
> [vm_0]gateway-ssl-truststore=
> [vm_0]gateway-ssl-truststore-password=
> [vm_0]groups=
> [vm_0]http-service-bind-address=
> [vm_0]http-service-port=7070
> [vm_0]http-service-ssl-ciphers=any
> [vm_0]http-service-ssl-enabled=false
> [vm_0]http-service-ssl-keystore=
> [vm_0]http-service-ssl-keystore-password=
> [vm_0]http-service-ssl-keystore-type=
> [vm_0]http-service-ssl-protocols=any
> [vm_0]http-service-ssl-require-authentication=false
> [vm_0]http-service-ssl-truststore=
> [vm_0]http-service-ssl-truststore-password=
> [vm_0]jmx-manager=false
> [vm_0]jmx-manager-access-file=
> [vm_0]jmx-manager-bind-address=
> [vm_0]jmx-manager-hostname-for-clients=
> [vm_0]jmx-manager-http-port=7070
> [vm_0]jmx-manager-password-file=
> [vm_0]jmx-manager-port=1099
> [vm_0]jmx-manager-ssl=false
> [vm_0]jmx-manager-ssl-ciphers=any
> [vm_0]jmx-manager-ssl-enabled=false
> [vm_0]jmx-manager-ssl-keystore=
> [vm_0]jmx-manager-ssl-keystore-password=
> [vm_0]jmx-manager-ssl-keystore-type=
> [vm_0]jmx-manager-ssl-protocols=any
> [vm_0]jmx-manager-ssl-require-authentication=true
> [vm_0]jmx-manager-ssl-truststore=
> [vm_0]jmx-manager-ssl-truststore-password=
> [vm_0]jmx-manager-start=false
> [vm_0]jmx-manager-update-rate=2000
> [vm_0]load-cluster-configuration-from-dir=false
> [vm_0]locator-wait-time=0
> [vm_0]lock-memory=false
> [vm_0]log-disk-space-limit=0
> [vm_0]log-file=
> [vm_0]log-file-size-limit=0
> [vm_0]max-num-reconnect-tries=3
> [vm_0]max-wait-time-reconnect=60000
> [vm_0]mcast-address=239.192.81.1
> [vm_0]mcast-flow-control=1048576, 0.25, 5000
> [vm_0]mcast-recv-buffer-size=1048576
> [vm_0]mcast-send-buffer-size=65535
> [vm_0]mcast-ttl=32
> [vm_0]member-timeout=5000
> [vm_0]membership-port-range=1024-65535
> [vm_0]memcached-bind-address=
> [vm_0]memcached-port=0
> [vm_0]memcached-protocol=ASCII
> [vm_0]name=
> [vm_0]redis-bind-address=
> [vm_0]redis-password=
> [vm_0]redis-port=0
> [vm_0]redundancy-zone=
> [vm_0]remote-locators=
> [vm_0]remove-unresponsive-client=false
> [vm_0]roles=
> [vm_0]security-client-accessor=
> [vm_0]security-client-accessor-pp=
> [vm_0]security-client-auth-init=
> [vm_0]security-client-authenticator=
> [vm_0]security-client-dhalgo=
> [vm_0]security-log-file=
> [vm_0]security-log-level=config
> [vm_0]security-peer-auth-init=
> [vm_0]security-peer-authenticator=
> [vm_0]security-peer-verifymember-timeout=1000
> [vm_0]server-bind-address=
> [vm_0]server-ssl-ciphers=any
> [vm_0]server-ssl-enabled=false
> [vm_0]server-ssl-keystore=
> [vm_0]server-ssl-keystore-password=
> [vm_0]server-ssl-keystore-type=
> [vm_0]server-ssl-protocols=any
> [vm_0]server-ssl-require-authentication=true
> [vm_0]server-ssl-truststore=
> [vm_0]server-ssl-truststore-password=
> [vm_0]socket-buffer-size=32768
> [vm_0]socket-lease-time=60000
> [vm_0]ssl-ciphers=any
> [vm_0]ssl-enabled=false
> [vm_0]ssl-protocols=any
> [vm_0]ssl-require-authentication=true
> [vm_0]start-dev-rest-api=false
> [vm_0]statistic-archive-file=
> [vm_0]statistic-sample-rate=1000
> [vm_0]statistic-sampling-enabled=true
> [vm_0]tcp-port=0
> [vm_0]udp-fragment-size=60000
> [vm_0]udp-recv-buffer-size=1048576
> [vm_0]udp-send-buffer-size=65535
> [vm_0]user-command-packages=
> [vm_0][info 2016/04/27 21:34:29.529 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Allocating 314572800 bytes of off-heap memory. The maximum size of 
> a single off-heap object is 314572800 bytes.
> [vm_0][info 2016/04/27 21:34:29.531 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Starting peer location for Distribution Locator on 
> localhost/127.0.0.1[21919]
> [vm_0][info 2016/04/27 21:34:29.531 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Starting Distribution Locator on localhost/127.0.0.1[21919]
> [vm_0][info 2016/04/27 21:34:29.531 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] GemFire peer location service starting.  Other locators: 
> localhost[21919]  Locators preferred as coordinators: false  Network 
> partition detection enabled: false  View persistence file: 
> locator21919view.dat
> [vm_0][info 2016/04/27 21:34:29.531 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Peer locator attempting to recover from localhost/127.0.0.1:21919
> [vm_0][info 2016/04/27 21:34:29.531 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Peer locator was unable to recover state from this locator
> [vm_0][info 2016/04/27 21:34:29.531 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Locator was created at Wed Apr 27 21:34:29 PDT 2016
> [vm_0][info 2016/04/27 21:34:29.531 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Listening on port 21919 bound on address localhost/127.0.0.1
> [vm_7][info 2016/04/27 21:34:29.514 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 args on object: 
> "IgnoredException addIgnoredException"
> [vm_7][info 2016/04/27 21:34:29.514 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_7][info 2016/04/27 21:34:29.514 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=add>Connection reset</ExpectedException>
> [vm_7][info 2016/04/27 21:34:29.514 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from com.gemstone.gemfire.test.dunit.IgnoredException$2.run with 0 
> args on object: "IgnoredException addIgnoredException" (took 0 ms)
> [vm_0][info 2016/04/27 21:34:29.533 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Peer locator is connecting to local membership services
> [vm_0][info 2016/04/27 21:34:29.533 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Starting membership services
> [vm_0][info 2016/04/27 21:34:29.540 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] JGroups channel created (took 7ms)
> [vm_0][info 2016/04/27 21:34:29.541 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] GemFire P2P Listener started on  null
> [vm_0][info 2016/04/27 21:34:29.544 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] This member is becoming the membership coordinator with address 
> zambia(6771)<ec>:1026
> [vm_0][info 2016/04/27 21:34:29.544 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] received new view: View[zambia(6771)<ec><v0>:1026|0] members: 
> [zambia(6771)<ec><v0>:1026{lead}]
> [vm_0]old view is: null
> [vm_0][info 2016/04/27 21:34:29.544 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Peer locator received new membership view: 
> View[zambia(6771)<ec><v0>:1026|0] members: [zambia(6771)<ec><v0>:1026{lead}]
> [vm_0][info 2016/04/27 21:34:29.544 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] ViewCreator starting on:zambia(6771)<ec><v0>:1026
> [vm_5][info 2016/04/27 21:34:29.479 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261@2892534
> [vm_0][info 2016/04/27 21:34:29.545 PDT <Geode Failure Detection Server 
> thread 0> tid=0x8aa] Started failure detection server thread on 
> zambia.gemstone.com/10.118.32.91:12896.
> [vm_5][info 2016/04/27 21:34:29.479 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: null
> [vm_5] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261@2892534
>  (took 0 ms)
> [vm_0][info 2016/04/27 21:34:29.545 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Finished joining (took 3ms).
> [vm_0][info 2016/04/27 21:34:29.545 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Starting DistributionManager zambia(6771)<ec><v0>:1026.  (took 13 
> ms)
> [vm_5][info 2016/04/27 21:34:29.495 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: com.gemstone.gemfire.test.dunit.NamedRunnable.run 
> with 0 args on object: runnable(setupVM)
> [vm_0][info 2016/04/27 21:34:29.545 PDT <Geode Membership View Creator> 
> tid=0x8ad] View Creator thread is starting
> [vm_5][info 2016/04/27 21:34:29.495 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: nul
> ...[truncated 3199597 chars]...
> 22 PDT <pool-69-thread-1> tid=0xb23] Initialization of region 
> _B__testWANPDX__PR__SerialSender__StartedLater__PR_0 completed
> [vm_2][info 2016/04/27 21:35:39.324 PDT <pool-69-thread-1> tid=0xb23] 
> Initializing region _B__testWANPDX__PR__SerialSender__StartedLater__PR_1
> [vm_2][info 2016/04/27 21:35:39.324 PDT <pool-69-thread-1> tid=0xb23] 
> Initialization of region _B__testWANPDX__PR__SerialSender__StartedLater__PR_1 
> completed
> [vm_2][info 2016/04/27 21:35:39.429 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Adding: PdxType[
> [vm_2]    dsid=1, typenum=1, name=com.gemstone.gemfire.pdx.SimpleClass, 
> fields=[
> [vm_2]        myInt:int:0:idx0(relativeOffset)=0:idx1(vlfOffsetIndex)=0
> [vm_2]        myByte:byte:1:idx0(relativeOffset)=4:idx1(vlfOffsetIndex)=0
> [vm_2]        myEnum:Object:2:idx0(relativeOffset)=5:idx1(vlfOffsetIndex)=-1]]
> [vm_2][info 2016/04/27 21:35:39.429 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_0 : Values : SimpleClass [myInt=0, myByte=0, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.429 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_1 : Values : SimpleClass [myInt=1, myByte=1, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.429 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_2 : Values : SimpleClass [myInt=2, myByte=2, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.429 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_3 : Values : SimpleClass [myInt=3, myByte=3, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_4 : Values : SimpleClass [myInt=4, myByte=4, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_5 : Values : SimpleClass [myInt=5, myByte=5, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_6 : Values : SimpleClass [myInt=6, myByte=6, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_7 : Values : SimpleClass [myInt=7, myByte=7, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_8 : Values : SimpleClass [myInt=8, myByte=8, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_9 : Values : SimpleClass [myInt=9, myByte=9, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_10 : Values : SimpleClass [myInt=10, myByte=10, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_11 : Values : SimpleClass [myInt=11, myByte=11, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.430 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_12 : Values : SimpleClass [myInt=12, myByte=12, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_13 : Values : SimpleClass [myInt=13, myByte=13, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_14 : Values : SimpleClass [myInt=14, myByte=14, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_15 : Values : SimpleClass [myInt=15, myByte=15, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_16 : Values : SimpleClass [myInt=16, myByte=16, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_17 : Values : SimpleClass [myInt=17, myByte=17, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_18 : Values : SimpleClass [myInt=18, myByte=18, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_19 : Values : SimpleClass [myInt=19, myByte=19, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_20 : Values : SimpleClass [myInt=20, myByte=20, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.431 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_21 : Values : SimpleClass [myInt=21, myByte=21, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.432 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_22 : Values : SimpleClass [myInt=22, myByte=22, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.432 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_23 : Values : SimpleClass [myInt=23, myByte=23, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.432 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_24 : Values : SimpleClass [myInt=24, myByte=24, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.432 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_25 : Values : SimpleClass [myInt=25, myByte=25, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.432 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_26 : Values : SimpleClass [myInt=26, myByte=26, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.432 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_27 : Values : SimpleClass [myInt=27, myByte=27, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.432 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_28 : Values : SimpleClass [myInt=28, myByte=28, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.433 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_29 : Values : SimpleClass [myInt=29, myByte=29, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.433 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_30 : Values : SimpleClass [myInt=30, myByte=30, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.433 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_31 : Values : SimpleClass [myInt=31, myByte=31, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.433 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_32 : Values : SimpleClass [myInt=32, myByte=32, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.433 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_33 : Values : SimpleClass [myInt=33, myByte=33, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.433 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_34 : Values : SimpleClass [myInt=34, myByte=34, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.433 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_35 : Values : SimpleClass [myInt=35, myByte=35, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.433 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_36 : Values : SimpleClass [myInt=36, myByte=36, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.434 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_37 : Values : SimpleClass [myInt=37, myByte=37, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.434 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_38 : Values : SimpleClass [myInt=38, myByte=38, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.434 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] For Key : Key_39 : Values : SimpleClass [myInt=39, myByte=39, 
> myEnum=TWO]
> [vm_2][info 2016/04/27 21:35:39.434 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Got result: null
> [vm_2] from 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest$$Lambda$125/569829709.run
>  with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.misc.PDXNewWanDUnitTest$$Lambda$125/569829709@119354c3
>  (took 216 ms)
> [vm_2][info 2016/04/27 21:35:39.435 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$36/794275049.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$36/794275049@6a4f608b
> [vm_5][info 2016/04/27 21:35:39.435 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/508861268.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/508861268@6a56dcb2
> [vm_5][info 2016/04/27 21:35:39.436 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: null
> [vm_5] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/508861268.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/508861268@6a56dcb2
>  (took 0 ms)
> [vm_2][info 2016/04/27 21:35:39.437 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] GemFireCache[id = 1422329044; isClosing = true; isShutDownAll = 
> false; created = Wed Apr 27 21:35:38 PDT 2016; server = false; copyOnRead = 
> false; lockLease = 120; lockTimeout = 60]: Now closing.
> [vm_6][info 2016/04/27 21:35:39.436 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/379720236.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/379720236@1049165d
> [vm_6][info 2016/04/27 21:35:39.436 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/379720236.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/379720236@1049165d
>  (took 0 ms)
> [vm_4][info 2016/04/27 21:35:39.436 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/1000007678.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/1000007678@66e86c1a
> [vm_4][info 2016/04/27 21:35:39.437 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/1000007678.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/1000007678@66e86c1a
>  (took 0 ms)
> [vm_7][info 2016/04/27 21:35:39.437 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/508861268.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/508861268@6a56dcb2
> [vm_7][info 2016/04/27 21:35:39.438 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/508861268.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$5/508861268@6a56dcb2
>  (took 0 ms)
> [vm_0][info 2016/04/27 21:35:39.438 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$57/1069330374.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$57/1069330374@27bfaaba
> [vm_0][info 2016/04/27 21:35:39.438 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Stopping Distribution Locator on localhost/127.0.0.1[22523]
> [vm_0][info 2016/04/27 21:35:39.439 PDT <Distribution Locator on 
> localhost/127.0.0.1[22523]> tid=0xafa] locator shutting down
> [vm_0][info 2016/04/27 21:35:39.440 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Distribution Locator on localhost/127.0.0.1[22523]  is stopped
> [vm_1][info 2016/04/27 21:35:39.438 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$19/1731312439.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$19/1731312439@426bdebd
> [vm_1][info 2016/04/27 21:35:39.439 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Stopping Distribution Locator on localhost/127.0.0.1[26194]
> [vm_1][info 2016/04/27 21:35:39.440 PDT <Distribution Locator on 
> localhost/127.0.0.1[26194]> tid=0xbe9] locator shutting down
> [vm_0][info 2016/04/27 21:35:39.441 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Shutting down DistributionManager zambia(6771)<ec><v0>:1026. 
> [vm_1][info 2016/04/27 21:35:39.441 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Distribution Locator on localhost/127.0.0.1[26194]  is stopped
> [vm_1][info 2016/04/27 21:35:39.442 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Shutting down DistributionManager zambia(6775)<ec><v0>:1027. 
> [vm_2][info 2016/04/27 21:35:39.443 PDT <Pooled High Priority Message 
> Processor 1> tid=0xb15] received leave request from zambia(6775)<ec><v0>:1027 
> for zambia(6775)<ec><v0>:1027
> [vm_2][info 2016/04/27 21:35:39.443 PDT <Pooled High Priority Message 
> Processor 1> tid=0xb15] This member is becoming the membership coordinator 
> with address zambia(6780)<ec><v1>:1028
> [vm_2][info 2016/04/27 21:35:39.443 PDT <Pooled High Priority Message 
> Processor 1> tid=0xb15] ViewCreator starting on:zambia(6780)<ec><v1>:1028
> [vm_2][info 2016/04/27 21:35:39.443 PDT <Pooled High Priority Message 
> Processor 1> tid=0xb15] Member at zambia(6775)<ec><v0>:1027 gracefully left 
> the distributed cache: shutdown message received
> [vm_2][info 2016/04/27 21:35:39.443 PDT <Geode Membership View Creator> 
> tid=0xb24] View Creator thread is starting
> [vm_2][info 2016/04/27 21:35:39.445 PDT <Geode Membership View Creator> 
> tid=0xb24] received new view: View[zambia(6780)<ec><v1>:1028|11] members: 
> [zambia(6780)<ec><v1>:1028{lead}]  shutdown: [zambia(6775)<ec><v0>:1027]
> [vm_2]old view is: View[zambia(6775)<ec><v0>:1027|1] members: 
> [zambia(6775)<ec><v0>:1027{lead}, zambia(6780)<ec><v1>:1028]
> [vm_2][info 2016/04/27 21:35:39.445 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Cache server on port 28,889 is shutting down.
> [vm_2][info 2016/04/27 21:35:39.446 PDT <Geode Membership View Creator> 
> tid=0xb24] no recipients for new view aside from myself
> [vm_2][info 2016/04/27 21:35:39.447 PDT <View Message Processor> tid=0xb26] 
> zambia(6780)<ec><v1>:1028 is the elder and the only member.
> [vm_2][info 2016/04/27 21:35:39.479 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Created oplog#1 krf for disk store pdxStore.
> [vm_2][info 2016/04/27 21:35:39.483 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Shutting down DistributionManager zambia(6780)<ec><v1>:1028. 
> [vm_0][info 2016/04/27 21:35:39.545 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Now closing distribution for zambia(6771)<ec><v0>:1026
> [vm_1][info 2016/04/27 21:35:39.545 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Now closing distribution for zambia(6775)<ec><v0>:1027
> [vm_1][info 2016/04/27 21:35:39.545 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Stopping membership services
> [vm_0][info 2016/04/27 21:35:39.545 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Stopping membership services
> [vm_0][info 2016/04/27 21:35:39.546 PDT <Geode Failure Detection Server 
> thread 0> tid=0xb09] GMSHealthMonitor server thread exiting
> [vm_0][info 2016/04/27 21:35:39.547 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] GMSHealthMonitor server socket is closed in stopServices().
> [vm_0][info 2016/04/27 21:35:39.547 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] GMSHealthMonitor serverSocketExecutor is terminated
> [vm_1][info 2016/04/27 21:35:39.546 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] GMSHealthMonitor server socket is closed in stopServices().
> [vm_1][info 2016/04/27 21:35:39.546 PDT <Geode Failure Detection Server 
> thread 0> tid=0xbf8] GMSHealthMonitor server thread exiting
> [vm_1][info 2016/04/27 21:35:39.546 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] GMSHealthMonitor serverSocketExecutor is terminated
> [vm_0][info 2016/04/27 21:35:39.548 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] DistributionManager stopped in 107ms.
> [vm_0][info 2016/04/27 21:35:39.548 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Marking DistributionManager zambia(6771)<ec><v0>:1026 as closed.
> [vm_1][info 2016/04/27 21:35:39.549 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] DistributionManager stopped in 107ms.
> [vm_1][info 2016/04/27 21:35:39.549 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Marking DistributionManager zambia(6775)<ec><v0>:1027 as closed.
> [vm_0][info 2016/04/27 21:35:39.549 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$57/1069330374.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$57/1069330374@27bfaaba
>  (took 111 ms)
> [vm_1][info 2016/04/27 21:35:39.550 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$19/1731312439.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$19/1731312439@426bdebd
>  (took 111 ms)
> [vm_2][info 2016/04/27 21:35:39.585 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Now closing distribution for zambia(6780)<ec><v1>:1028
> [vm_2][info 2016/04/27 21:35:39.585 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Stopping membership services
> [vm_2][info 2016/04/27 21:35:39.586 PDT <Geode Failure Detection Server 
> thread 0> tid=0xb07] GMSHealthMonitor server thread exiting
> [vm_2][info 2016/04/27 21:35:39.586 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] GMSHealthMonitor server socket is closed in stopServices().
> [vm_2][info 2016/04/27 21:35:39.586 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] GMSHealthMonitor serverSocketExecutor is terminated
> [vm_2][info 2016/04/27 21:35:39.588 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] DistributionManager stopped in 105ms.
> [vm_2][info 2016/04/27 21:35:39.588 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Marking DistributionManager zambia(6780)<ec><v1>:1028 as closed.
> [vm_2][info 2016/04/27 21:35:39.593 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Got result: null
> [vm_2] from 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$36/794275049.run 
> with 0 args on object: 
> com.gemstone.gemfire.internal.cache.wan.WANTestBase$$Lambda$36/794275049@6a4f608b
>  (took 156 ms)
> [vm_0][info 2016/04/27 21:35:40.664 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1283047343.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1283047343@7619f12e
> [vm_0][info 2016/04/27 21:35:40.664 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1283047343.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1283047343@7619f12e
>  (took 0 ms)
> [vm_1][info 2016/04/27 21:35:40.665 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/762121555.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/762121555@5a377b1f
> [vm_1][info 2016/04/27 21:35:40.665 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/762121555.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/762121555@5a377b1f
>  (took 0 ms)
> [vm_2][info 2016/04/27 21:35:40.665 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1994898982.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1994898982@621f52b3
> [vm_2][info 2016/04/27 21:35:40.665 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Got result: null
> [vm_2] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1994898982.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1994898982@621f52b3
>  (took 0 ms)
> [vm_4][info 2016/04/27 21:35:40.666 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/185487523.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/185487523@1833460d
> [vm_4][info 2016/04/27 21:35:40.666 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/185487523.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/185487523@1833460d
>  (took 0 ms)
> [vm_5][info 2016/04/27 21:35:40.667 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1682741748.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1682741748@463a340a
> [vm_5][info 2016/04/27 21:35:40.667 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: null
> [vm_5] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1682741748.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1682741748@463a340a
>  (took 0 ms)
> [vm_6][info 2016/04/27 21:35:40.668 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1300123047.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1300123047@6a51f73
> [vm_6][info 2016/04/27 21:35:40.668 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1300123047.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1300123047@6a51f73
>  (took 0 ms)
> [vm_7][info 2016/04/27 21:35:40.668 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1682741748.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1682741748@463a340a
> [vm_7][info 2016/04/27 21:35:40.668 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1682741748.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$7/1682741748@463a340a
>  (took 0 ms)
> [info 2016/04/27 21:35:40.668 PDT <Test worker> tid=0xa] <ExpectedException 
> action=remove>Connection refused</ExpectedException>
> [info 2016/04/27 21:35:40.668 PDT <Test worker> tid=0xa] <ExpectedException 
> action=remove>Connection refused</ExpectedException>
> [vm_0][info 2016/04/27 21:35:40.669 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_0][info 2016/04/27 21:35:40.669 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_0][info 2016/04/27 21:35:40.669 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_0][info 2016/04/27 21:35:40.669 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_2][info 2016/04/27 21:35:40.670 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_2][info 2016/04/27 21:35:40.670 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.670 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.670 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Got result: null
> [vm_2] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_1][info 2016/04/27 21:35:40.670 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_1][info 2016/04/27 21:35:40.670 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_1][info 2016/04/27 21:35:40.670 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_1][info 2016/04/27 21:35:40.670 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_4][info 2016/04/27 21:35:40.672 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_4][info 2016/04/27 21:35:40.672 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_4][info 2016/04/27 21:35:40.672 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_4][info 2016/04/27 21:35:40.672 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_5][info 2016/04/27 21:35:40.672 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_5][info 2016/04/27 21:35:40.672 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_5][info 2016/04/27 21:35:40.672 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_5][info 2016/04/27 21:35:40.672 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: null
> [vm_5] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_6][info 2016/04/27 21:35:40.673 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_6][info 2016/04/27 21:35:40.673 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_6][info 2016/04/27 21:35:40.673 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_6][info 2016/04/27 21:35:40.673 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_7][info 2016/04/27 21:35:40.673 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_7][info 2016/04/27 21:35:40.673 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_7][info 2016/04/27 21:35:40.673 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=remove>Connection 
> refused</ExpectedException>
> [vm_7][info 2016/04/27 21:35:40.673 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [info 2016/04/27 21:35:40.674 PDT <Test worker> tid=0xa] <ExpectedException 
> action=remove>Software caused connection abort</ExpectedException>
> [info 2016/04/27 21:35:40.674 PDT <Test worker> tid=0xa] <ExpectedException 
> action=remove>Software caused connection abort</ExpectedException>
> [vm_0][info 2016/04/27 21:35:40.674 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_0][info 2016/04/27 21:35:40.674 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_0][info 2016/04/27 21:35:40.674 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_0][info 2016/04/27 21:35:40.674 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_1][info 2016/04/27 21:35:40.674 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_1][info 2016/04/27 21:35:40.674 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_1][info 2016/04/27 21:35:40.674 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_1][info 2016/04/27 21:35:40.674 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_2][info 2016/04/27 21:35:40.675 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_2][info 2016/04/27 21:35:40.675 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.675 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.675 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Got result: null
> [vm_2] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_4][info 2016/04/27 21:35:40.675 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_4][info 2016/04/27 21:35:40.675 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_4][info 2016/04/27 21:35:40.675 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_4][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_5][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_5][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_5][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_5][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: null
> [vm_6][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_6][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_6][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_6][info 2016/04/27 21:35:40.676 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_5] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_7][info 2016/04/27 21:35:40.677 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_7][info 2016/04/27 21:35:40.677 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [info 2016/04/27 21:35:40.677 PDT <Test worker> tid=0xa] <ExpectedException 
> action=remove>Connection reset</ExpectedException>
> [vm_7][info 2016/04/27 21:35:40.677 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=remove>Software caused connection 
> abort</ExpectedException>
> [vm_7][info 2016/04/27 21:35:40.677 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [info 2016/04/27 21:35:40.677 PDT <Test worker> tid=0xa] <ExpectedException 
> action=remove>Connection reset</ExpectedException>
> [vm_7] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_0][info 2016/04/27 21:35:40.677 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_0][info 2016/04/27 21:35:40.677 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_0][info 2016/04/27 21:35:40.677 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_0][info 2016/04/27 21:35:40.677 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_1][info 2016/04/27 21:35:40.678 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_1][info 2016/04/27 21:35:40.678 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_1][info 2016/04/27 21:35:40.678 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_1][info 2016/04/27 21:35:40.678 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_2][info 2016/04/27 21:35:40.678 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_2][info 2016/04/27 21:35:40.678 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.678 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.678 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Got result: null
> [vm_2] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_4][info 2016/04/27 21:35:40.679 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_4][info 2016/04/27 21:35:40.679 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_4][info 2016/04/27 21:35:40.679 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_4][info 2016/04/27 21:35:40.679 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_5][info 2016/04/27 21:35:40.679 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_5][info 2016/04/27 21:35:40.679 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_6][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_6][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_6][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_6][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_5][info 2016/04/27 21:35:40.679 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_5][info 2016/04/27 21:35:40.679 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: null
> [vm_5] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_7][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 args on object: 
> "IgnoredException remove"
> [vm_7][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_7][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] <ExpectedException action=remove>Connection 
> reset</ExpectedException>
> [vm_7][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from com.gemstone.gemfire.test.dunit.IgnoredException$1.run with 0 
> args on object: "IgnoredException remove" (took 0 ms)
> [vm_0][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$10/1052923373.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$10/1052923373@3f47115d
> [vm_0][info 2016/04/27 21:35:40.680 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$10/1052923373.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$10/1052923373@3f47115d
>  (took 0 ms)
> [vm_1][info 2016/04/27 21:35:40.681 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1051002325.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1051002325@7b6790c7
> [vm_1][info 2016/04/27 21:35:40.681 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1051002325.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1051002325@7b6790c7
>  (took 0 ms)
> [vm_2][info 2016/04/27 21:35:40.681 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$10/1227666694.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$10/1227666694@271248b
> [vm_2][info 2016/04/27 21:35:40.682 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException 
> action=remove>com.gemstone.gemfire.internal.cache.ForceReattemptException</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.682 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException 
> action=remove>com.gemstone.gemfire.internal.cache.ForceReattemptException</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.682 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException 
> action=remove>com.gemstone.gemfire.cache.persistence.PartitionOfflineException</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.682 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] <ExpectedException 
> action=remove>com.gemstone.gemfire.cache.persistence.PartitionOfflineException</ExpectedException>
> [vm_2][info 2016/04/27 21:35:40.682 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Got result: null
> [vm_2] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$10/1227666694.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$10/1227666694@271248b
>  (took 0 ms)
> [vm_4][info 2016/04/27 21:35:40.683 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1303424238.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1303424238@515dd383
> [vm_4][info 2016/04/27 21:35:40.684 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1303424238.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1303424238@515dd383
>  (took 0 ms)
> [vm_5][info 2016/04/27 21:35:40.684 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1014800849.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1014800849@13e390cc
> [vm_5][info 2016/04/27 21:35:40.684 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: null
> [vm_5] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1014800849.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1014800849@13e390cc
>  (took 0 ms)
> [vm_6][info 2016/04/27 21:35:40.684 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1314173135.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1314173135@4a33e981
> [vm_6][info 2016/04/27 21:35:40.685 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1314173135.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1314173135@4a33e981
>  (took 0 ms)
> [vm_7][info 2016/04/27 21:35:40.685 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1014800849.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1014800849@13e390cc
> [vm_7][info 2016/04/27 21:35:40.685 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Got result: null
> [vm_7] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1014800849.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$8/1014800849@13e390cc
>  (took 0 ms)
> [locator][info 2016/04/27 21:35:40.686 PDT <RMI TCP 
> Connection(2)-10.118.32.91> tid=0x75] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$5/2035579861.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$5/2035579861@241108f2
> [locator][info 2016/04/27 21:35:40.686 PDT <RMI TCP 
> Connection(2)-10.118.32.91> tid=0x75] Got result: null
> [locator] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$5/2035579861.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$5/2035579861@241108f2
>  (took 0 ms)
> [vm_0][info 2016/04/27 21:35:40.691 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/471672977.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/471672977@21940dab
> [vm_0][info 2016/04/27 21:35:40.691 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x4a8] Got result: null
> [vm_0] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/471672977.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/471672977@21940dab
>  (took 0 ms)
> [vm_1][info 2016/04/27 21:35:40.691 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/51288268.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/51288268@6b7b0003
> [vm_1][info 2016/04/27 21:35:40.691 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x68e] Got result: null
> [vm_1] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/51288268.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/51288268@6b7b0003
>  (took 0 ms)
> [vm_2][info 2016/04/27 21:35:40.692 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/41085205.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/41085205@18f681d
> [vm_2][info 2016/04/27 21:35:40.692 PDT <RMI TCP Connection(1)-10.118.32.91> 
> tid=0x12] Got result: null
> [vm_2] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/41085205.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$4/41085205@18f681d
>  (took 0 ms)
> [vm_4][info 2016/04/27 21:35:40.693 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/62829572.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/62829572@1232d481
> [vm_4][info 2016/04/27 21:35:40.693 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x1a9] Got result: null
> [vm_4] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/62829572.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/62829572@1232d481
>  (took 0 ms)
> [vm_5][info 2016/04/27 21:35:40.694 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261@2892534
> [vm_6][info 2016/04/27 21:35:40.694 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1546442229.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1546442229@2b15b2e8
> [vm_6][info 2016/04/27 21:35:40.694 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x100] Got result: null
> [vm_6] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1546442229.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/1546442229@2b15b2e8
>  (took 0 ms)
> [vm_5][info 2016/04/27 21:35:40.694 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x170] Got result: null
> [vm_5] from 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261@2892534
>  (took 0 ms)
> [vm_7][info 2016/04/27 21:35:40.695 PDT <RMI TCP Connection(2)-10.118.32.91> 
> tid=0x106] Received method: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261.run
>  with 0 args on object: 
> com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase$$Lambda$9/76094261@2892534
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to