This is an automated email from the ASF dual-hosted git repository.
bschuchardt 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 3e30fbf GEODE-6727 CI failure:
AcceptorImplClientQueueDistributedTest.
clientSubscriptionQueueInitializationShouldNotBlockNewConnections
3e30fbf is described below
commit 3e30fbf180a180af101fa4089525688dda780660
Author: Bruce Schuchardt <[email protected]>
AuthorDate: Tue Apr 30 16:22:40 2019 -0700
GEODE-6727 CI failure: AcceptorImplClientQueueDistributedTest.
clientSubscriptionQueueInitializationShouldNotBlockNewConnections
Removed try/catch that prevented us from seeing why a cache server
failed to start.
---
.../tier/sockets/AcceptorImplClientQueueDistributedTest.java | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git
a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/AcceptorImplClientQueueDistributedTest.java
b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/AcceptorImplClientQueueDistributedTest.java
index 0f1fa32..f5b5ca5 100644
---
a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/AcceptorImplClientQueueDistributedTest.java
+++
b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/AcceptorImplClientQueueDistributedTest.java
@@ -143,13 +143,9 @@ public class AcceptorImplClientQueueDistributedTest
implements Serializable {
// Start a second server
int vm1_port = vm1.invoke("Start server2 in with subscriptions turned on",
() -> {
- try {
- int serverPort = createSubscriptionServer(cacheRule.getCache());
- InitialImageOperation.slowImageProcessing = 500;
- return serverPort;
- } catch (IOException e) {
- return 0;
- }
+ int serverPort = createSubscriptionServer(cacheRule.getCache());
+ InitialImageOperation.slowImageProcessing = 500;
+ return serverPort;
});
// Make copying the queue slow