tests fixed

pull/5457/head
Nikita Koksharov 1 year ago
parent 33300a554f
commit e5389b3e9b

@ -482,13 +482,13 @@ public class RedissonTopicTest extends RedisDockerTest {
}
try {
Thread.sleep(1000);
Thread.sleep(2000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
topic.publish("mymessage");
Awaitility.waitAtMost(Duration.ofSeconds(1)).until(() -> reference.get().equals("mymessage"));
Awaitility.waitAtMost(Duration.ofSeconds(1)).until(() -> "mymessage".equals(reference.get()));
List<String> sourceList2 = sourceConnection.sync(RedisCommands.PUBSUB_CHANNELS);
assertThat(sourceList2).isEmpty();
@ -1470,6 +1470,8 @@ public class RedissonTopicTest extends RedisDockerTest {
.addNode(master3, slave3);
ClusterProcesses process = clusterRunner.run();
Thread.sleep(5000);
Config config = new Config();
config.useClusterServers()
.addNodeAddress(process.getNodes().stream().findAny().get().getRedisServerAddressAndPort());
@ -1621,6 +1623,8 @@ public class RedissonTopicTest extends RedisDockerTest {
.addNode(master3, slave3);
ClusterProcesses process = clusterRunner.run();
Thread.sleep(5000);
Config config = new Config();
config.useClusterServers()
.setSubscriptionMode(SubscriptionMode.MASTER)

Loading…
Cancel
Save