Skip to content
Merged
Changes from all commits
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 @@ -1057,6 +1057,14 @@ private synchronized void fatalUnacknowledgedFailure(Throwable cause)
taskStatusFetcher.updateTaskStatus(taskStatus);
}
}
else {
// Even though state in taskStatus is Done already it could not be the case for task info.
// We could have received valid response from taskStatusFetcher just before the worker went
// down, but taskInfoFetcher still holds old state.
// Update taskInfo so task is not stuck in FTE execution mode which depends on final task info
// being delivered.
updateTaskInfo(getTaskInfo().withTaskStatus(taskStatus));
}
}
}

Expand Down