Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public SuccessOrFailure portIsListeningOnHttp(int internalPort, Function<DockerP
return SuccessOrFailure.failure("Internal port " + internalPort + " is not listening in container " + containerName);
}
return port.isHttpRespondingSuccessfully(urlFunction, andCheckStatus)
.mapFailure(failureMessage -> internalPort + " does not have a http response from " + urlFunction.apply(port) + ":\n" + failureMessage);
.mapFailure(failureMessage -> containerName+":"+internalPort + " does not have a http response from " + urlFunction.apply(port) + ":\n" + failureMessage);
} catch (Exception e) {
return SuccessOrFailure.fromException(e);
}
Expand Down