Skip to content

Commit

Permalink
Work around paraemiko bugs
Browse files Browse the repository at this point in the history
Seems like we get into paramiko/paramiko#391 (comment)
  • Loading branch information
mvdbeek committed Dec 30, 2019
1 parent dbed9ab commit 619971a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/galaxy/jobs/runners/util/cli/shell/rsh.py
Expand Up @@ -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):

Expand Down

0 comments on commit 619971a

Please sign in to comment.