File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
core/src/test/java/com/datastax/oss/driver/internal/core/pool Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ public void should_shrink_during_reconnection() throws Exception {
125125
126126 factoryHelper .waitForCalls (node , 2 );
127127
128- // Pool should have shrinked back to 2. We keep the most recent channels so 1 and 2 get closed.
128+ // Pool should have shrunk back to 2. We keep the most recent channels so 1 and 2 get closed.
129129 inOrder .verify (eventBus , VERIFY_TIMEOUT .times (2 )).fire (ChannelEvent .channelOpened (node ));
130130 inOrder .verify (eventBus , VERIFY_TIMEOUT .times (2 )).fire (ChannelEvent .channelClosed (node ));
131131 inOrder .verify (eventBus , VERIFY_TIMEOUT ).fire (ChannelEvent .reconnectionStopped (node ));
Original file line number Diff line number Diff line change 5050abstract class ChannelPoolTestBase {
5151
5252 /** How long we wait when verifying mocks for async invocations */
53- protected static final VerificationWithTimeout VERIFY_TIMEOUT = timeout (500 );
53+ protected static final VerificationWithTimeout VERIFY_TIMEOUT = timeout (2000 );
5454
5555 @ Mock protected InternalDriverContext context ;
5656 @ Mock private DriverConfig config ;
You can’t perform that action at this time.
0 commit comments