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 2015/07/09 12:07:45 UTC

flink git commit: [hotfix] Fix wrong unit (secs vs msecs) in TaskManager logging statement.

Repository: flink
Updated Branches:
  refs/heads/master 590c6d064 -> 7ce05ad57


[hotfix] Fix wrong unit (secs vs msecs) in TaskManager logging statement.


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

Branch: refs/heads/master
Commit: 7ce05ad57c7bfd7a6227886790c0a6dc3d152ff1
Parents: 590c6d0
Author: Stephan Ewen <se...@apache.org>
Authored: Thu Jul 9 12:06:56 2015 +0200
Committer: Stephan Ewen <se...@apache.org>
Committed: Thu Jul 9 12:06:56 2015 +0200

----------------------------------------------------------------------
 .../scala/org/apache/flink/runtime/taskmanager/TaskManager.scala   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/7ce05ad5/flink-runtime/src/main/scala/org/apache/flink/runtime/taskmanager/TaskManager.scala
----------------------------------------------------------------------
diff --git a/flink-runtime/src/main/scala/org/apache/flink/runtime/taskmanager/TaskManager.scala b/flink-runtime/src/main/scala/org/apache/flink/runtime/taskmanager/TaskManager.scala
index 5abcab8..273e072 100644
--- a/flink-runtime/src/main/scala/org/apache/flink/runtime/taskmanager/TaskManager.scala
+++ b/flink-runtime/src/main/scala/org/apache/flink/runtime/taskmanager/TaskManager.scala
@@ -1177,7 +1177,7 @@ object TaskManager {
       LOG.info("Trying to select the network interface and address to use " +
         "by connecting to the configured JobManager.")
 
-      LOG.info(s"TaskManager will try to connect for $MAX_STARTUP_CONNECT_TIME seconds before " +
+      LOG.info(s"TaskManager will try to connect for $MAX_STARTUP_CONNECT_TIME milliseconds before " +
         "falling back to heuristics")
 
       val jobManagerAddress = new InetSocketAddress(jobManagerHostname, jobManagerPort)