[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 f391cba986
commit e151d4d1d0
1 changed files with 3 additions and 0 deletions

View File

@ -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