Repository: nifi Updated Branches: refs/heads/master 45f82dc85 -> 50c364a79
NIFI-4162: PutSQL batch update error message should include the cause Signed-off-by: Pierre Villard <[email protected]> This closes #1992. Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/50c364a7 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/50c364a7 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/50c364a7 Branch: refs/heads/master Commit: 50c364a793e8605f0b6f2e48ef5e0e08cfcf817d Parents: 45f82dc Author: Koji Kawamura <[email protected]> Authored: Fri Jul 7 18:11:41 2017 +0900 Committer: Pierre Villard <[email protected]> Committed: Fri Jul 7 12:25:10 2017 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/nifi/processors/standard/PutSQL.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/50c364a7/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutSQL.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutSQL.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutSQL.java index cb3b198..7e75964 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutSQL.java +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutSQL.java @@ -456,8 +456,8 @@ public class PutSQL extends AbstractSessionFactoryProcessor { } } - getLogger().error("Failed to update database due to a failed batch update. There were a total of {} FlowFiles that failed, {} that succeeded, " - + "and {} that were not execute and will be routed to retry; ", new Object[]{failureCount, successCount, retryCount}); + getLogger().error("Failed to update database due to a failed batch update, {}. There were a total of {} FlowFiles that failed, {} that succeeded, " + + "and {} that were not execute and will be routed to retry; ", new Object[]{e, failureCount, successCount, retryCount}, e); return;
