Repository: nifi Updated Branches: refs/heads/master 8878d732d -> 47165afc0
NIFI-4073 - fix duplicated stack trace This closes #1916. Signed-off-by: Andy LoPresto <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/47165afc Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/47165afc Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/47165afc Branch: refs/heads/master Commit: 47165afc0cc9c6a0fe55e61cdefb86c48b52e716 Parents: 8878d73 Author: Pierre Villard <[email protected]> Authored: Thu Jun 15 12:32:42 2017 +0200 Committer: Andy LoPresto <[email protected]> Committed: Fri Jun 23 11:20:07 2017 -0400 ---------------------------------------------------------------------- .../coordination/http/replication/ThreadPoolRequestReplicator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/47165afc/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/coordination/http/replication/ThreadPoolRequestReplicator.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/coordination/http/replication/ThreadPoolRequestReplicator.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/coordination/http/replication/ThreadPoolRequestReplicator.java index d2c7b38..e5a46f8 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/coordination/http/replication/ThreadPoolRequestReplicator.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/coordination/http/replication/ThreadPoolRequestReplicator.java @@ -822,7 +822,7 @@ public class ThreadPoolRequestReplicator implements RequestReplicator { nodeResponse = replicateRequest(resourceBuilder, nodeId, method, uri, requestId, headers, clusterResponse); } catch (final Exception e) { nodeResponse = new NodeResponse(nodeId, method, uri, e); - logger.warn("Failed to replicate request {} {} to {} due to {}", method, uri.getPath(), nodeId, e); + logger.warn("Failed to replicate request {} {} to {} due to {}", method, uri.getPath(), nodeId, e.toString()); logger.warn("", e); }
