[JAVA-13220] Added comment about failing test (#12644)
Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com>
This commit is contained in:
parent
f391cba986
commit
e151d4d1d0
|
@ -14,6 +14,9 @@ public class TestRedisConfiguration {
|
|||
|
||||
public TestRedisConfiguration(final RedisProperties redisProperties) {
|
||||
this.redisServer = new RedisServer(redisProperties.getRedisPort());
|
||||
//Uncomment below if running on windows and can't start redis server
|
||||
// this.redisServer = RedisServer.builder().setting("maxheap 200m").port(6379).setting("bind localhost").build();
|
||||
// redisServer.start();
|
||||
}
|
||||
|
||||
@PostConstruct
|
||||
|
|
Loading…
Reference in New Issue