Skip to content

Commit

Permalink
GEODE-8577: Fix flaky PubSubNativeRedisAcceptanceTest (apache#5597)
Browse files Browse the repository at this point in the history
- Apparently we need more time between retrying for a new connection on
  docker.
  • Loading branch information
jdeppe-pivotal authored Oct 6, 2020
1 parent 9bc288a commit f8dae61
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@
package org.apache.geode.redis.internal.executor.pubsub;

import org.junit.ClassRule;
import org.junit.Ignore;

import org.apache.geode.NativeRedisTestRule;

@Ignore("GEODE-8577")
public class PubSubNativeRedisAcceptanceTest extends AbstractPubSubIntegrationTest {
@ClassRule
public static NativeRedisTestRule redis = new NativeRedisTestRule();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ private Jedis getConnection() {
}
}
try {
Thread.sleep(100);
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit f8dae61

Please sign in to comment.