Skip to content

Commit bb5b434

Browse files
committed
Temporary disable restoreParams() tests because of regression in 8.0-M02 release
- AllKindOfValuesCommandsTest.restoreParams - AllKindOfValuesCommandsTestBase.restoreParams
1 parent 174b933 commit bb5b434

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/test/java/redis/clients/jedis/commands/jedis/AllKindOfValuesCommandsTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import io.redis.test.annotations.SinceRedisVersion;
2121
import org.hamcrest.Matchers;
2222
import org.junit.Assume;
23+
import org.junit.Ignore;
2324
import org.junit.Test;
2425
import org.junit.runner.RunWith;
2526
import org.junit.runners.Parameterized;
@@ -606,6 +607,7 @@ public void dumpAndRestore() {
606607
}
607608

608609
@Test
610+
@Ignore(value = "TODO: Regression in 8.0-M02 discarding restore idle time.")
609611
public void restoreParams() {
610612
// take a separate instance
611613
Jedis jedis2 = new Jedis(endpoint.getHost(), endpoint.getPort(), 500);

src/test/java/redis/clients/jedis/commands/unified/AllKindOfValuesCommandsTestBase.java

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
import io.redis.test.annotations.SinceRedisVersion;
3434
import org.hamcrest.Matchers;
3535
import org.junit.Assume;
36+
import org.junit.Ignore;
3637
import org.junit.Test;
3738

3839
import redis.clients.jedis.RedisProtocol;
@@ -432,6 +433,7 @@ public void dumpAndRestore() {
432433
}
433434

434435
@Test
436+
@Ignore(value = "TODO: Regression in 8.0-M02 discarding restore idle time.")
435437
public void restoreParams() {
436438
jedis.set("foo", "bar");
437439
jedis.set("from", "a");

0 commit comments

Comments
 (0)