Skip to content

Commit 74a4185

Browse files
committed
removing pings due to still flaky with inv messages
1 parent f5cb18b commit 74a4185

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Diff for: src/test/java/redis/clients/jedis/csc/UnifiedJedisClientSideCacheTestBase.java

-8
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ public void simple() {
3939
control.set("foo", "bar");
4040
assertEquals("bar", jedis.get("foo"));
4141
control.del("foo");
42-
// this ping is an attempt to gain a reasonable amount of time to let invalidation messsage shows up on CacheConnection
43-
control.ping();
4442
assertNull(jedis.get("foo"));
4543
}
4644
}
@@ -56,8 +54,6 @@ public void simpleWithSimpleMap() {
5654
assertEquals(1, cache.getSize());
5755
control.del("foo");
5856
assertEquals(1, cache.getSize());
59-
// this ping is an attempt to gain a reasonable amount of time to let invalidation messsage shows up on CacheConnection
60-
control.ping();
6157
assertNull(jedis.get("foo"));
6258
assertEquals(1, cache.getSize());
6359
assertNull(jedis.get("foo"));
@@ -72,8 +68,6 @@ public void flushAll() {
7268
control.set("foo", "bar");
7369
assertEquals("bar", jedis.get("foo"));
7470
control.flushAll();
75-
// this ping is an attempt to gain a reasonable amount of time to let invalidation messsage shows up on CacheConnection
76-
control.ping();
7771
assertNull(jedis.get("foo"));
7872
}
7973
}
@@ -88,8 +82,6 @@ public void flushAllWithSimpleMap() {
8882
assertEquals(1, cache.getSize());
8983
control.flushAll();
9084
assertEquals(1, cache.getSize());
91-
// this ping is an attempt to gain a reasonable amount of time to let invalidation messsage shows up on CacheConnection
92-
control.ping();
9385
assertNull(jedis.get("foo"));
9486
assertEquals(1, cache.getSize());
9587
assertNull(jedis.get("foo"));

0 commit comments

Comments
 (0)