Show task ID in source of persistent task state update (#48483)

Relates #48395
This commit is contained in:
Yannick Welsch 2019-10-25 10:28:52 +02:00
parent b24bbd4296
commit 486794f24d
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ public class PersistentTasksClusterService implements ClusterStateListener, Clos
final long taskAllocationId,
final PersistentTaskState taskState,
final ActionListener<PersistentTask<?>> listener) {
clusterService.submitStateUpdateTask("update task state", new ClusterStateUpdateTask() {
clusterService.submitStateUpdateTask("update task state [" + taskId + "]", new ClusterStateUpdateTask() {
@Override
public ClusterState execute(ClusterState currentState) {
PersistentTasksCustomMetaData.Builder tasksInProgress = builder(currentState);