Skip to content

Commit

Permalink
fix(test/mariadb.go): setupMariaDB/WithDeadline:1->6mins
Browse files Browse the repository at this point in the history
this needs to acoomodate wait.ForLog(...).WithStartupTimeout which is set for 5 minutes
  • Loading branch information
Adam Bezecny committed Nov 6, 2023
1 parent 6fb55ac commit eedc2d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/mariadb.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func SetupMariaDB(ctx context.Context, dbUser string, dbPwd string, dbRootPwd st
return exitCode == 0
}),
wait.ForListeningPort(MariaDBPort),
).WithDeadline(1 * time.Minute),
).WithDeadline(6 * time.Minute),
}

container, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
Expand Down

0 comments on commit eedc2d0

Please sign in to comment.