Skip to content

Commit

Permalink
Fix application of task cleaning hook in RunningIndexTasks (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
Enet4 authored Apr 23, 2024
1 parent 2fa3510 commit db15866
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void addTask(String taskUid, Task<Report> task) {
}

public void addTask(Task<Report> task) {
taskRunningList.put(task.getUid(), task);
this.addTask(task.getUid(), task);
}

public boolean removeTask(String taskUid) {
Expand Down

0 comments on commit db15866

Please sign in to comment.