Commit 3da02f95 authored by Wez's avatar Wez Committed by Commit Bot

[Fuchsia] Disable use of SSH connection multiplexing.

Connection multiplexing results in unexpected hangs or resets when used
by our runner scripts, so disable it until the root cause is found and
resolved upstream.

Bug: 900790
Change-Id: I5025a5d652cdcbfe0c206fc4bf42366efbee07be
Reviewed-on: https://chromium-review.googlesource.com/c/1359489Reviewed-by: default avatarSergey Ulanov <sergeyu@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#613377}
parent e14b2223
...@@ -12,6 +12,8 @@ import tempfile ...@@ -12,6 +12,8 @@ import tempfile
import time import time
import uuid import uuid
# TODO(https://crbug.com/900790): Re-enable multiplexing once upstream issues
# are resolved.
_SSH_CONFIG_TEMPLATE = """ _SSH_CONFIG_TEMPLATE = """
Host * Host *
CheckHostIP no CheckHostIP no
...@@ -24,8 +26,8 @@ Host * ...@@ -24,8 +26,8 @@ Host *
IdentityFile {identity} IdentityFile {identity}
ServerAliveInterval 2 ServerAliveInterval 2
ServerAliveCountMax 5 ServerAliveCountMax 5
ControlMaster auto ControlMaster no
ControlPersist 1m ControlPersist no
ControlPath /tmp/ssh-%r@%h:%p ControlPath /tmp/ssh-%r@%h:%p
ConnectTimeout 5 ConnectTimeout 5
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment