Skip to content

Commit

Permalink
- remove workaround for standalone endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
atakavci committed Dec 20, 2024
1 parent 88a20c2 commit 93f53a2
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,8 @@ public static void before() {
try {
endpointConfig = HostAndPorts.getRedisEndpoint("standalone0");
} catch (IllegalArgumentException e) {
try {
endpointConfig = HostAndPorts.getRedisEndpoint("standalone");
} catch (IllegalArgumentException ex) {
log.warn("Skipping test because no Redis endpoint is configured");
org.junit.Assume.assumeTrue(false);
}
log.warn("Skipping test because no Redis endpoint is configured");
org.junit.Assume.assumeTrue(false);
}
}

Expand Down

0 comments on commit 93f53a2

Please sign in to comment.