I'm trying to list folders on FTP server path "/www". The callback is never called and I'm getting ECONNRESET error.
What I've already managed to debug myself inside connection.js file is that sendList method is called, I'm getting code 150, then it goes to final method, but replies counter is "1" so it waits for second reply, but it never comes.
The response with files list is comming from ftp server during this operation (the buffer variable has it).
This is causing bug in my Visual Studio Code extension. I got it reported by @krystianprzybyla in this issue. He can probably help you with more details about his FTP server. This is happening on popular european hosting - OVH.
I'm trying to list folders on FTP server path "/www". The callback is never called and I'm getting
ECONNRESET
error.What I've already managed to debug myself inside
connection.js
file is thatsendList
method is called, I'm getting code 150, then it goes tofinal
method, butreplies
counter is "1" so it waits for second reply, but it never comes.The response with files list is comming from ftp server during this operation (the
buffer
variable has it).The debug log is following:
And then connection is being closed.
This is causing bug in my Visual Studio Code extension. I got it reported by @krystianprzybyla in this issue. He can probably help you with more details about his FTP server. This is happening on popular european hosting - OVH.