You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2015/08/28 15:21:23 UTC

flink git commit: [scripts] Fixes path for taskmanager.sh in start-cluster.sh script

Repository: flink
Updated Branches:
  refs/heads/release-0.10.0-milestone-1 cf225f0f9 -> 1b31265e2


[scripts] Fixes path for taskmanager.sh in start-cluster.sh script


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

Branch: refs/heads/release-0.10.0-milestone-1
Commit: 1b31265e2d80d8577c39e5c5d09424f4d3252005
Parents: cf225f0
Author: Till Rohrmann <tr...@apache.org>
Authored: Fri Aug 28 15:20:33 2015 +0200
Committer: Till Rohrmann <tr...@apache.org>
Committed: Fri Aug 28 15:20:33 2015 +0200

----------------------------------------------------------------------
 flink-dist/src/main/flink-bin/bin/start-cluster.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/1b31265e/flink-dist/src/main/flink-bin/bin/start-cluster.sh
----------------------------------------------------------------------
diff --git a/flink-dist/src/main/flink-bin/bin/start-cluster.sh b/flink-dist/src/main/flink-bin/bin/start-cluster.sh
index 2183841..429285e 100755
--- a/flink-dist/src/main/flink-bin/bin/start-cluster.sh
+++ b/flink-dist/src/main/flink-bin/bin/start-cluster.sh
@@ -52,5 +52,5 @@ fi
 readSlaves
 
 for slave in ${SLAVES[@]}; do
-    ssh -n $FLINK_SSH_OPTS $slave -- "nohup /bin/bash -l $bin/taskmanager.sh start ${STREAMING_MODE} &"
+    ssh -n $FLINK_SSH_OPTS $slave -- "nohup /bin/bash -l $FLINK_BIN_DIR/taskmanager.sh start ${STREAMING_MODE} &"
 done