[JAVA-13220] Added comment about failing test (#12644)

Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com>
This commit is contained in:
panos-kakos
2022-08-25 16:54:56 +01:00
committed by GitHub
parent ba1c0706a8
commit 1a5a959265

View File

@@ -14,6 +14,9 @@ public class TestRedisConfiguration {
public TestRedisConfiguration(final RedisProperties redisProperties) { public TestRedisConfiguration(final RedisProperties redisProperties) {
this.redisServer = new RedisServer(redisProperties.getRedisPort()); 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 @PostConstruct