Skip to content

Commit 281bf5d

Browse files
author
Leimeroth
committed
try fix problems with upload
1 parent 03e4626 commit 281bf5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pysqa/utils/remote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ def _transfer_files(self, file_dict, sftp=None, transfer_back=False):
159159
ssh = self._open_ssh_connection()
160160
sftp_client = ssh.open_sftp()
161161
sftp_client.sock.in_window_size = 8388608
162-
sftp_client.sock.out_window_size = 8388608
162+
#sftp_client.sock.out_window_size = 8388608
163163
sftp_client.sock.in_max_packet_size = 131072
164-
sftp_client.sock.out_max_packet_size = 131072
164+
#sftp_client.sock.out_max_packet_size = 131072
165165
else:
166166
sftp_client = sftp
167167
for file_src, file_dst in tqdm(file_dict.items()):

0 commit comments

Comments
 (0)