When I try to add a new channel to an existing subscription it fails:
RedisConnection connection = connectionFactory.getConnection();
connection.subscribe(istener, channels);
// At this point subscription for channels works, gets updates
//...
//...
Subscription subscription = connection.getSubscription();
subscription.subscribe(newChannel);
subscription.subscribe
throws io.lettuce.core.RedisCommandTimeoutException: Command timed out after 1 minute(s)
I am stuck, any idea?