You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2018/09/24 13:03:14 UTC

[flink] branch master updated: [FLINK-10389][runtime] Remove unused field in TaskManagerServicesConfiguration

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c574b4  [FLINK-10389][runtime] Remove unused field in TaskManagerServicesConfiguration
3c574b4 is described below

commit 3c574b456dba1cf019b4f64638a992aed5b338cb
Author: vinoyang <ya...@gmail.com>
AuthorDate: Mon Sep 24 21:03:08 2018 +0800

    [FLINK-10389][runtime] Remove unused field in TaskManagerServicesConfiguration
---
 .../flink/runtime/taskexecutor/TaskManagerServicesConfiguration.java   | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerServicesConfiguration.java b/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerServicesConfiguration.java
index eec39ef..c27e54d 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerServicesConfiguration.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerServicesConfiguration.java
@@ -85,8 +85,6 @@ public class TaskManagerServicesConfiguration {
 
 	private final boolean localRecoveryEnabled;
 
-	private boolean systemResourceMetricsEnabled;
-
 	private Optional<Time> systemResourceMetricsProbingInterval;
 
 	public TaskManagerServicesConfiguration(
@@ -121,7 +119,6 @@ public class TaskManagerServicesConfiguration {
 			"service shutdown timeout must be greater or equal to 0.");
 		this.timerServiceShutdownTimeout = timerServiceShutdownTimeout;
 
-		this.systemResourceMetricsEnabled = systemResourceMetricsEnabled;
 		this.systemResourceMetricsProbingInterval = checkNotNull(systemResourceMetricsProbingInterval);
 	}