Skip to content
Open
Show file tree
Hide file tree
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 @@ -141,6 +141,11 @@ public boolean taskSessionFullSupport() {
return taskSesFullSupport;
}

/** @return Task name. */
public String taskName() {
return taskName;
}

/**
* Write topology information.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,9 @@ else if (task != null) {
}
}

if (task instanceof PlatformFullTask)
taskName = ((PlatformFullTask)task).taskName();

assert taskName != null;

if (log.isDebugEnabled())
Expand Down