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 2019/01/28 12:50:32 UTC

[flink] branch master updated: fix typo in JobMaster (#7572)

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 3138734  fix typo in JobMaster (#7572)
3138734 is described below

commit 3138734dfeda8e625e7f3e4aa43287992edee028
Author: Benchao Li <li...@gmail.com>
AuthorDate: Mon Jan 28 20:50:24 2019 +0800

    fix typo in JobMaster (#7572)
---
 .../src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java b/flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java
index 90b8b84..c63e5f5 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java
@@ -1340,7 +1340,7 @@ public class JobMaster extends FencedRpcEndpoint<JobMasterId> implements JobMast
 				}
 			});
 		} else {
-			log.debug("Ignoring resource manager connection to {} because its a duplicate or outdated.", resourceManagerId);
+			log.debug("Ignoring resource manager connection to {} because it's duplicated or outdated.", resourceManagerId);
 
 		}
 	}