SFTP: change queue size to 32 (max packet size is 32kb so 32*32=1M)

This commit is contained in:
terrafrost 2016-11-20 18:13:01 -06:00
parent a2d9622bf9
commit 6fb34887c5

View File

@ -413,7 +413,7 @@ class Net_SFTP extends Net_SSH2
); );
if (!defined('NET_SFTP_QUEUE_SIZE')) { if (!defined('NET_SFTP_QUEUE_SIZE')) {
define('NET_SFTP_QUEUE_SIZE', 50); define('NET_SFTP_QUEUE_SIZE', 32);
} }
} }