utils: raise sftp timeout to 20 secondes (#86379)

This commit is contained in:
Benjamin Dauvergne 2024-01-31 12:37:44 +01:00
parent 13d30a8049
commit df0084d202
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ class SFTP:
ssh.connect(
hostname=self.hostname,
port=self.port,
timeout=5,
timeout=25,
pkey=self.private_key,
look_for_keys=False,
allow_agent=False,