Skip to content

Commit

Permalink
try fix problems with upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Leimeroth committed Jul 31, 2022
1 parent 03e4626 commit 281bf5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysqa/utils/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ def _transfer_files(self, file_dict, sftp=None, transfer_back=False):
ssh = self._open_ssh_connection()
sftp_client = ssh.open_sftp()
sftp_client.sock.in_window_size = 8388608
sftp_client.sock.out_window_size = 8388608
#sftp_client.sock.out_window_size = 8388608
sftp_client.sock.in_max_packet_size = 131072
sftp_client.sock.out_max_packet_size = 131072
#sftp_client.sock.out_max_packet_size = 131072
else:
sftp_client = sftp
for file_src, file_dst in tqdm(file_dict.items()):
Expand Down

0 comments on commit 281bf5d

Please sign in to comment.