Add timeout delays for docker test
Open
- Dominant language
- Scala
- Stars
- 47
- Forks
- 14
- PR merge metrics
- No merged PRs in 30d
Description
Sometimes, docker tests using testcontainers fail with an error message like org.testcontainers.containers.ContainerLaunchException: Timed out waiting for URL to be accessible
This may be fixed by adding a startup delay, e.g.
```
container = new KafkaContainer()
container.withStartupTimeout(Duration.of(5, ChronoUnit.MINUTES))
container.start();
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.