Skip to content

Commit

Permalink
Fix wait strategy for older redis versions (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
djakielski authored Feb 29, 2024
1 parent 9805f22 commit cb6edb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/modules/redis/src/redis-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class RedisContainer extends GenericContainer {
super(image);
this.withExposedPorts(REDIS_PORT)
.withStartupTimeout(120_000)
.withWaitStrategy(Wait.forLogMessage("Ready to accept connections tcp"));
.withWaitStrategy(Wait.forLogMessage("Ready to accept connections"));
}

public withPassword(password: string): this {
Expand Down

0 comments on commit cb6edb9

Please sign in to comment.