You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thank you for checking that functionality and sorry that we brought to you some pain with those unexpected files 😄
I think as a workaround you can inject your own:
private CompositeFileListFilter<LsEntry> composeFilters(FileListFilter<LsEntry> fileListFilter) {
CompositeFileListFilter<LsEntry> compositeFileListFilter = new CompositeFileListFilter<>();
compositeFileListFilter.addFilters(fileListFilter,
new SftpPersistentAcceptOnceFileListFilter(new SimpleMetadataStore(), "sftpStreamingMessageSource"));
return compositeFileListFilter;
}
with overridden supportsSingleFileFiltering() to return always false, so all those files are going to be filtered just after a fetch, not during processing each of them.
Hi guys,
as follow up on this issue
https://stackoverflow.com/questions/58752135/spring-integration-stream-sftp-pattern-filter-not-working/58753207#58753207
I'm raising this ticket.
I have used Spring integration 5.2.0
The text was updated successfully, but these errors were encountered: