Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit 3e8e803

Browse files
committed
chore: Update error message
1 parent 1d4f78d commit 3e8e803

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

src/main/java/io/contract_testing/contractcase/client/InternalDefinerClient.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -314,11 +314,13 @@ public void onError(Throwable t) {
314314
Status status = Status.fromThrowable(t);
315315
if (Status.Code.UNAVAILABLE.equals(status.getCode())) {
316316
System.err.println(
317-
"ContractCase was unable to contact its internal server."
318-
+ " This is either a conflict while starting the server,"
319-
+ " or a bug in ContractCase. Please see the rest of the "
320-
+ "log output. If it is a bug, please open an issue on "
321-
+ "https://github.com/case-contract-testing/contract-case");
317+
"ContractCase was unable to contact its internal server.\n"
318+
+ " This is either a conflict while starting the server,\n"
319+
+ " or a bug in ContractCase. Please see the rest of the\n"
320+
+ " log output for details.\n\n"
321+
+ " If you are unable to resolve this locally,\n"
322+
+ " please open an issue here:"
323+
+ " https://github.com/case-contract-testing/contract-case");
322324
} else {
323325
System.err.println("ContractCase failed: " + status);
324326
}

0 commit comments

Comments
 (0)