From 4f94ecb6b5147809c231c5a2ff36d1d608e1481f Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Tue, 21 Jan 2025 13:39:31 +0300 Subject: [PATCH] test fixed --- redisson/src/test/java/org/redisson/jcache/JCacheTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redisson/src/test/java/org/redisson/jcache/JCacheTest.java b/redisson/src/test/java/org/redisson/jcache/JCacheTest.java index 9926a60d0..45f23f192 100644 --- a/redisson/src/test/java/org/redisson/jcache/JCacheTest.java +++ b/redisson/src/test/java/org/redisson/jcache/JCacheTest.java @@ -45,7 +45,7 @@ public class JCacheTest { private static final GenericContainer REDIS = new GenericContainer<>("redis:latest") .withCreateContainerCmdModifier(cmd -> { - cmd.withCmd("redis-server", "--save", "''", "--notify-keyspace-events", "Eh"); + cmd.withCmd("redis-server", "--save", "''", "--notify-keyspace-events", "Ehx"); }) .withExposedPorts(6379);