You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2017/02/28 18:36:51 UTC

[08/11] flink git commit: [FLINK-5501] [runtime] Make config key for ZooKeeper path for running registry consistent with other keys

[FLINK-5501] [runtime] Make config key for ZooKeeper path for running registry consistent with other keys


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/7f244b8d
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/7f244b8d
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/7f244b8d

Branch: refs/heads/master
Commit: 7f244b8d4267b50c88aef69f6fd915595f23b368
Parents: e0dede9
Author: Stephan Ewen <se...@apache.org>
Authored: Tue Feb 28 10:46:40 2017 +0100
Committer: Stephan Ewen <se...@apache.org>
Committed: Tue Feb 28 18:59:10 2017 +0100

----------------------------------------------------------------------
 .../org/apache/flink/configuration/HighAvailabilityOptions.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/7f244b8d/flink-core/src/main/java/org/apache/flink/configuration/HighAvailabilityOptions.java
----------------------------------------------------------------------
diff --git a/flink-core/src/main/java/org/apache/flink/configuration/HighAvailabilityOptions.java b/flink-core/src/main/java/org/apache/flink/configuration/HighAvailabilityOptions.java
index b883bc3..2cfb25a 100644
--- a/flink-core/src/main/java/org/apache/flink/configuration/HighAvailabilityOptions.java
+++ b/flink-core/src/main/java/org/apache/flink/configuration/HighAvailabilityOptions.java
@@ -125,7 +125,7 @@ public class HighAvailabilityOptions {
 			.withDeprecatedKeys("recovery.zookeeper.client.max-retry-attempts");
 
 	public static final ConfigOption<String> ZOOKEEPER_RUNNING_JOB_REGISTRY_PATH = 
-			key("high-availability.zookeeper.job.registry")
+			key("high-availability.zookeeper.path.running-registry")
 			.defaultValue("/running_job_registry/");
 
 	// ------------------------------------------------------------------------