-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Description
Affects Version(s): \ 4.3.20-RELEASE
Hi, we're using spring-integration for uploading FTP files to a server of ours.
Due to some unrelated problem we took a TCP dump on the FTP traffic and we could identify an issue in spring-integration which I'd like to report here.
Basically the FTP session is not closed at all but just the connection is closed. See
Line 146 in 3cd751a
public void close() { |
This causes the following interaction
I would suggest to add method call logout() in the Session's close() implementation.