From ec08af8acb58470911623fd75517621468bd63cc Mon Sep 17 00:00:00 2001 From: chenson42 Date: Sun, 20 Oct 2013 00:59:45 +0000 Subject: [PATCH] 0001447: Change error message if a batch fails to transport because of an EOF error to be more intuitive. --- .../jumpmind/symmetric/service/impl/DataExtractorService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symmetric-core/src/main/java/org/jumpmind/symmetric/service/impl/DataExtractorService.java b/symmetric-core/src/main/java/org/jumpmind/symmetric/service/impl/DataExtractorService.java index 2f1add5599..91df9dabef 100644 --- a/symmetric-core/src/main/java/org/jumpmind/symmetric/service/impl/DataExtractorService.java +++ b/symmetric-core/src/main/java/org/jumpmind/symmetric/service/impl/DataExtractorService.java @@ -542,7 +542,7 @@ protected List extract(ProcessInfo processInfo, Node targetNode, if (isStreamClosedByClient(e)) { log.warn( - "Failed to extract batch {}. The stream was closed by the client. There is a good chance that a previously sent batch errored out and the stream was closed. The error was: {}", + "Failed to transport batch {}. The stream was closed by the client. There is a good chance that a previously sent batch errored out and the stream was closed or there was a network error. The error was: {}", currentBatch, getRootMessage(e)); } else { if (e instanceof ProtocolException) {