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
Currently, the RedisServer class lacks a convenient mechanism to notify external code when the server has fully started and is ready to accept requests. I would be happy if a method or mechanism is introduced in the RedisServer class that signals when the server has completed its startup and initialization processes.
Example.
// Example if server is already running:server.stop();
// - Here assert request that are using the mock server failsserver.start();
Awaitility.await().until(server::isReady);
// Proceed with assertions or operations requiring the server to be operational
The text was updated successfully, but these errors were encountered:
Currently, the RedisServer class lacks a convenient mechanism to notify external code when the server has fully started and is ready to accept requests. I would be happy if a method or mechanism is introduced in the RedisServer class that signals when the server has completed its startup and initialization processes.
Example.
The text was updated successfully, but these errors were encountered: