Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
astelmashenko committed Jun 8, 2023
1 parent 1fea8d7 commit a709ad2
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,16 @@ public void execute(WorkflowSystemTask systemTask, String taskId) {
if (task == null) {
LOGGER.error("TaskId: {} could not be found while executing {}", taskId, systemTask);
try {
LOGGER.debug("Cleaning up dead task from queue message: taskQueue={}, taskId={}", systemTask.getTaskType(), taskId);
LOGGER.debug(
"Cleaning up dead task from queue message: taskQueue={}, taskId={}",
systemTask.getTaskType(),
taskId);
queueDAO.remove(systemTask.getTaskType(), taskId);
} catch (Exception e) {
LOGGER.error("Failed to remove dead task from queue message: taskQueue={}, taskId={}", systemTask.getTaskType(), taskId);
LOGGER.error(
"Failed to remove dead task from queue message: taskQueue={}, taskId={}",
systemTask.getTaskType(),
taskId);
}
return;
}
Expand Down

0 comments on commit a709ad2

Please sign in to comment.