Skip to content

Commit cb6edb9

Browse files
authored
Fix wait strategy for older redis versions (#718)
1 parent 9805f22 commit cb6edb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/modules/redis/src/redis-container.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class RedisContainer extends GenericContainer {
1313
super(image);
1414
this.withExposedPorts(REDIS_PORT)
1515
.withStartupTimeout(120_000)
16-
.withWaitStrategy(Wait.forLogMessage("Ready to accept connections tcp"));
16+
.withWaitStrategy(Wait.forLogMessage("Ready to accept connections"));
1717
}
1818

1919
public withPassword(password: string): this {

0 commit comments

Comments
 (0)