evanplaice / node-ftpsync

Intelligent file syncronization over FTP
http://evanplaice.github.io/node-ftpsync
MIT License
74 stars 21 forks source link

FTP upload can't handle more than one aync connection #1

Closed evanplaice closed 10 years ago

evanplaice commented 11 years ago

To reproduce:

Set 'connections': '2' in config.json before running the sync.

Setting the settings.connections variable to >1 causes uploads to fail.

Is this a limitation of the ftp server or jsftp?

Should this option be removed?

It would be beneficial of the sync could push multiple concurrent connections. 2 should be the typical limit.

evanplaice commented 11 years ago

Is this a limitation of the ftp server or jsftp?

The ftp server used for testing can handle 2 concurrent connections if I use Filezilla so that's not the issue.

It appears to be limited by how I'm using jsftp. Maybe there's a workaround.