You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a custom version of Redis, the code waits indefinitely for the Redis Server to start. This is because it is waiting for the following startup message as set on redis.embedded.RedisServer.class
REDIS_READY_PATTERN = ".The server is now ready to accept connections on port."
It appears as of version 4.0.* that the final startup statement issued by Redis is now - * Ready to accept connections.
As REDIS_READY_PATTERN is a final string and the method is protected access, it doesn't appear you can set the value when creating the server.
When using a custom version of Redis, the code waits indefinitely for the Redis Server to start. This is because it is waiting for the following startup message as set on redis.embedded.RedisServer.class
REDIS_READY_PATTERN = ".The server is now ready to accept connections on port."
It appears as of version 4.0.* that the final startup statement issued by Redis is now - * Ready to accept connections.
As REDIS_READY_PATTERN is a final string and the method is protected access, it doesn't appear you can set the value when creating the server.
The text was updated successfully, but these errors were encountered: