From 017e94848382ff8c32c8a9b1f08d52f9cecf23f4 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Mon, 11 Dec 2023 14:01:32 +0100 Subject: ssh: select non-interactive IPQoS Due to the piping, ssh thinks this is interactive and defaults to lowdelay. --- mdbp/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdbp/ssh.py') diff --git a/mdbp/ssh.py b/mdbp/ssh.py index c0a295c..9e9ed8c 100644 --- a/mdbp/ssh.py +++ b/mdbp/ssh.py @@ -109,7 +109,7 @@ def main() -> None: if len(args.command) < 2: parser.error("missing command or json file") build = buildjson(args.command.pop()) - cmd = ["ssh"] + cmd = ["ssh", "-o", "IPQoS=throughput"] if args.proxyrepos and "extrarepositories" in build: repoforward = RepoForward() build["extrarepositories"] = list( -- cgit v1.2.3