Github user StefanRRichter commented on a diff in the pull request:
https://github.com/apache/flink/pull/5239#discussion_r168500911
--- Diff:
flink-runtime/src/main/scala/org/apache/flink/runtime/taskmanager/TaskManager.scala
---
@@ -120,15 +120,16 @@ import scala.language.postfixOps
* requires a clean JVM.
*/
class TaskManager(
- protected val config: TaskManagerConfiguration,
- protected val resourceID: ResourceID,
- protected val location: TaskManagerLocation,
- protected val memoryManager: MemoryManager,
- protected val ioManager: IOManager,
- protected val network: NetworkEnvironment,
- protected val numberOfSlots: Int,
- protected val highAvailabilityServices: HighAvailabilityServices,
- protected val taskManagerMetricGroup: TaskManagerMetricGroup)
+ protected val config: TaskManagerConfiguration,
+ protected val resourceID: ResourceID,
+ protected val location: TaskManagerLocation,
+ protected val memoryManager: MemoryManager,
+ protected val ioManager: IOManager,
+ protected val network: NetworkEnvironment,
+ protected val taskManagerLocalStateStoresManager:
TaskExecutorLocalStateStoresManager,
+ protected val numberOfSlots: Int,
+ protected val highAvailabilityServices:
HighAvailabilityServices,
+ protected val taskManagerMetricGroup:
TaskManagerMetricGroup)
--- End diff --
ð
---