Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -524,15 +524,15 @@ int waitForTaskProcessToComplete(Task task, ProcessHolder processHolder, File lo
try {
taskLogPusher.pushTaskLog(task.getId(), logFile);
}
catch (IOException e) {
catch (Exception e) {
LOGGER.error("Task[%s] failed to push task logs to [%s]: Exception[%s]",
task.getId(), logFile.getName(), e.getMessage());
}
if (reportsFile.exists()) {
try {
taskLogPusher.pushTaskReports(task.getId(), reportsFile);
}
catch (IOException e) {
catch (Exception e) {
LOGGER.error("Task[%s] failed to push task reports to [%s]: Exception[%s]",
task.getId(), reportsFile.getName(), e.getMessage());
}
Expand Down
Loading