Skip to content

Commit

Permalink
chore(redisContainerBaseTest): 싱글톤으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Nov 13, 2024
1 parent df1d110 commit 1f75c21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public abstract class redisContainerBaseTest {
static {
REDIS_CONTAINER = new GenericContainer<>(REDIS_IMAGE)
.withExposedPorts(6379)
//.withReuse(true)
.withReuse(true)
.waitingFor(Wait.forListeningPort());
REDIS_CONTAINER.start();
}
Expand Down

0 comments on commit 1f75c21

Please sign in to comment.