From ad45053750da81fee81fadfb1051ec1a0df707fb Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Mon, 30 Dec 2019 16:00:49 +0100 Subject: [PATCH] Work around paraemiko bugs Seems like we get into https://github.com/paramiko/paramiko/issues/391#issuecomment-332887929 --- lib/galaxy/jobs/runners/util/cli/shell/rsh.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/galaxy/jobs/runners/util/cli/shell/rsh.py b/lib/galaxy/jobs/runners/util/cli/shell/rsh.py index c6c7e1fbd1a4..98d88f49211c 100644 --- a/lib/galaxy/jobs/runners/util/cli/shell/rsh.py +++ b/lib/galaxy/jobs/runners/util/cli/shell/rsh.py @@ -77,7 +77,9 @@ def connect(self): username=self.username, password=self.password, key_filename=self.private_key, - timeout=self.timeout) + timeout=self.timeout, + allow_agent=False, + look_for_keys=False) def execute(self, cmd, timeout=60):