This is an automated email from the ASF dual-hosted git repository. upthewaterspout pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git
commit 61014b2f20f4e57e59bb2ffe2e9968545ba0e37a Author: Dan Smith <[email protected]> AuthorDate: Fri Oct 12 12:52:43 2018 -0700 GEODE-5863: Ingoring testMultipleExecuteWithInitialResults This test fails after increasing the Awaitility timeout. However, it previously was not testing anything because it hit the (smaller) awailitity timeout but ignored the timeout exception. Ignoring this test until we actually rework this into a valid test. Co-Authored-By "Ken Howe" <[email protected]> --- .../java/org/apache/geode/cache/query/cq/dunit/CqDataDUnitTest.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/geode-cq/src/distributedTest/java/org/apache/geode/cache/query/cq/dunit/CqDataDUnitTest.java b/geode-cq/src/distributedTest/java/org/apache/geode/cache/query/cq/dunit/CqDataDUnitTest.java index 0aac70b..fac2d7f 100644 --- a/geode-cq/src/distributedTest/java/org/apache/geode/cache/query/cq/dunit/CqDataDUnitTest.java +++ b/geode-cq/src/distributedTest/java/org/apache/geode/cache/query/cq/dunit/CqDataDUnitTest.java @@ -18,8 +18,10 @@ import static org.junit.Assert.fail; import java.util.HashSet; import java.util.concurrent.CountDownLatch; +import java.util.concurrent.TimeUnit; import org.apache.logging.log4j.Logger; +import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.categories.Category; @@ -963,6 +965,7 @@ public class CqDataDUnitTest extends JUnit4CacheTestCase { * */ @Test + @Ignore("GEODE-5863 - The test fails with an Awaitility timeout after increasing the timeout. It previously ignored the timeout") public void testMultipleExecuteWithInitialResults() throws Exception { final int numObjects = 200; final int totalObjects = 500; @@ -1118,7 +1121,8 @@ public class CqDataDUnitTest extends JUnit4CacheTestCase { }); // wait for 60 seconds for test to complete - ThreadUtils.join(processCqs, 60 * 1000); + processCqs.get(1, TimeUnit.MINUTES); + // Close. cqDUnitTest.closeClient(client); cqDUnitTest.closeServer(server);
