This is an automated email from the ASF dual-hosted git repository.
jinmeiliao pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new ccfa6bb GEODE-4901: increase the wait time for the newly created
queue to be ready. (#1651)
ccfa6bb is described below
commit ccfa6bbbc6d84322676d89fd169e7fc39d8c020d
Author: jinmeiliao <[email protected]>
AuthorDate: Wed Mar 21 06:18:43 2018 -0700
GEODE-4901: increase the wait time for the newly created queue to be ready.
(#1651)
---
.../test/java/org/apache/geode/test/junit/rules/MemberStarterRule.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/geode-core/src/test/java/org/apache/geode/test/junit/rules/MemberStarterRule.java
b/geode-core/src/test/java/org/apache/geode/test/junit/rules/MemberStarterRule.java
index ab082c2..681b905 100644
---
a/geode-core/src/test/java/org/apache/geode/test/junit/rules/MemberStarterRule.java
+++
b/geode-core/src/test/java/org/apache/geode/test/junit/rules/MemberStarterRule.java
@@ -276,7 +276,7 @@ public abstract class MemberStarterRule<T> extends
SerializableExternalResource
}
public void waitTillAsyncEventQueuesAreReadyOnServers(String queueId, int
serverCount) {
- await().atMost(2, TimeUnit.SECONDS).until(
+ await().atMost(30, TimeUnit.SECONDS).until(
() -> CliUtil.getMembersWithAsyncEventQueue(getCache(),
queueId).size() == serverCount);
}
--
To stop receiving notification emails like this one, please contact
[email protected].