You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by dw...@apache.org on 2018/09/17 10:21:47 UTC

[flink] branch master updated: [hotfix][docs] Fix comment error in ZooKeeperSubmittedJobGraphStore

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

dwysakowicz 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 b821e56  [hotfix][docs] Fix comment error in ZooKeeperSubmittedJobGraphStore
b821e56 is described below

commit b821e569fabd2fbf29052f5b727e82dbb8e476ab
Author: vinoyang <ya...@gmail.com>
AuthorDate: Mon Sep 17 18:21:38 2018 +0800

    [hotfix][docs] Fix comment error in ZooKeeperSubmittedJobGraphStore
---
 .../flink/runtime/jobmanager/ZooKeeperSubmittedJobGraphStore.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/ZooKeeperSubmittedJobGraphStore.java b/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/ZooKeeperSubmittedJobGraphStore.java
index 2fd19fb..a030184 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/ZooKeeperSubmittedJobGraphStore.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/ZooKeeperSubmittedJobGraphStore.java
@@ -75,7 +75,7 @@ public class ZooKeeperSubmittedJobGraphStore implements SubmittedJobGraphStore {
 	/** The set of IDs of all added job graphs. */
 	private final Set<JobID> addedJobGraphs = new HashSet<>();
 
-	/** Completed checkpoints in ZooKeeper. */
+	/** Submitted job graphs in ZooKeeper. */
 	private final ZooKeeperStateHandleStore<SubmittedJobGraph> jobGraphsInZooKeeper;
 
 	/**