summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyota MIBU <r-mibu@cq.jp.nec.com>2016-08-18 13:21:05 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-18 13:21:05 +0000
commit38a2b7c629688a1a8b362e1d4ffb5c8cde965dad (patch)
tree1ca5b76bd91ce5b7bc112462499a838e98e239a5
parentc0a49e9c8f74832ee9f67630275e75e42296fe00 (diff)
parent44f1133c8b0087acce42c3cfaf47d011a513423d (diff)
Merge "fix ssh tunnel creation"
-rwxr-xr-xtests/run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh
index 01adf689..7531c989 100755
--- a/tests/run.sh
+++ b/tests/run.sh
@@ -211,7 +211,7 @@ start_consumer() {
# NOTE(r-mibu): create tunnel to the installer node, so that we can
# avoid some network problems dpends on infra and installers.
# This tunnel will be terminated by stop_consumer() or after 10 mins passed.
- TUNNEL_COMMAND="sudo ssh $ssh_opts $INSTALLER_IP -R $CONSUMER_PORT:localhost:$CONSUMER_PORT 'sleep 600'"
+ TUNNEL_COMMAND="sudo ssh $ssh_opts $INSTALLER_IP -R $CONSUMER_PORT:localhost:$CONSUMER_PORT sleep 600"
$TUNNEL_COMMAND > ssh_tunnel.log 2>&1 < /dev/null &
}