You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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();
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: