Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: site_config/slave_hosts_cfg.py

Issue 197763009: Remove "-t -t" -- is this causing us to hang? (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: site_config/slave_hosts_cfg.py
diff --git a/site_config/slave_hosts_cfg.py b/site_config/slave_hosts_cfg.py
index b168d9752143ac7a9b4f0b842d64c99f5d13fced..4bc5e5c6df6012588a7c1cc575ec5a761d405831 100644
--- a/site_config/slave_hosts_cfg.py
+++ b/site_config/slave_hosts_cfg.py
@@ -44,10 +44,8 @@ SKIALAB_USERNAME = skia_vars.GetGlobalVariable('skialab_username')
def skia_lab_login(hostname, config):
"""Procedure for logging into SkiaLab machines."""
- # The multiple "-t"s are needed in order to force tty allocation, which gives
- # us the expected interactive behavior, even with two levels of SSH.
return [
- 'ssh', '-t', '-t', '%s@%s' % (SKIALAB_USERNAME, SKIALAB_ROUTER_IP),
+ 'ssh', '%s@%s' % (SKIALAB_USERNAME, SKIALAB_ROUTER_IP),
'ssh', '%s@%s' % (SKIALAB_USERNAME, config['ip'])
]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698