mirror of https://github.com/apache/nifi.git
NIFI-4162: PutSQL batch update error message should include the cause
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #1992.
This commit is contained in:
parent
45f82dc855
commit
50c364a793
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue