Remove withReuse in MongoDBAtlasContainer

`Reuse Container` is a Testcontainers experimental feature. It requires
`testcontainers.reuse.enable=true` in `~/.testcontainers.properties` in
order to take effect but in order to avoid surprises, this commit remove it.

See https://java.testcontainers.org/features/reuse/
This commit is contained in:
Eddú Meléndez
2024-03-16 13:11:04 -06:00
committed by Christian Tzolov
parent c036931065
commit c5f35029f0

View File

@@ -29,7 +29,7 @@ public class MongoDBAtlasContainer extends GenericContainer<MongoDBAtlasContaine
"atlas deployments setup local-test --type local --port 27778 --bindIpAll --username root --password root --force && tail -f /dev/null");
withExposedPorts(27778);
waitingFor(Wait.forLogMessage(".*Deployment created!.*\\n", 1));
withStartupTimeout(Duration.ofMinutes(5)).withReuse(true);
withStartupTimeout(Duration.ofMinutes(5));
}
public String getConnectionString() {