Nikita Koksharov

Results 687 comments of Nikita Koksharov

here is the similar issue https://github.com/redisson/redisson/issues/5227. PTAL Upgrade to 3.23.2 resolved the issue.

Can you set `trace` logging level for `org.redisson` package and share the output since the application start moment?

> Exception encountered during context initialization - cancelling refresh attempt: Factory method 'redissonClient' threw exception with message: Can't connect to servers! Can you share the full stacktrace?

it might be cause by ongoing replication process.

As workaround you need to replace the code below ```java remoteService = services.get(ReactiveRInterface.class); ``` with ```java remoteService = client.reactive().getRemoteService("hello-reactor").get(ReactiveRInterface.class); ```

Fixed in https://github.com/redisson/redisson/issues/5947

Below is the example how to specify Redisson settings in Spring config. Can you use it? ```yaml spring: redis: redisson: config: | sentinelServersConfig: idleConnectionTimeout: 10000 connectTimeout: 10000 timeout: 3000 sentinelAddresses:...