File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
core/src/main/java/org/testcontainers/dockerclient Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -246,12 +246,11 @@ public boolean test(DockerClientProviderStrategy dockerClientProviderStrategy) {
246246 .findFirst ()
247247 .orElseThrow (() -> {
248248 log .error (
249- "Could not find a valid Docker environment. Please check configuration. Attempted configurations were:"
249+ "Could not find a valid Docker environment. Please check configuration. Attempted configurations were:\n " +
250+ configurationFailures .stream ().map (it -> "\t " + it ).collect (Collectors .joining ("\n " )) +
251+ "As no valid configuration was found, execution cannot continue.\n " +
252+ "See https://www.testcontainers.org/on_failure.html for more details."
250253 );
251- for (String failureMessage : configurationFailures ) {
252- log .error (" " + failureMessage );
253- }
254- log .error ("As no valid configuration was found, execution cannot continue" );
255254
256255 FAIL_FAST_ALWAYS .set (true );
257256 return new IllegalStateException (
Original file line number Diff line number Diff line change 1212/usage/database_containers.html /modules/databases/
1313/usage/neo4j_container.html /modules/databases/neo4j/
1414/compatibility.html /supported_docker_environment/
15+ /on_failure.html /supported_docker_environment/
1516
1617# No great 1:1 mapping exists for the following, so redirect to somewhere where at least a sensible sidebar will be shown
1718
You can’t perform that action at this time.
0 commit comments