Github user joewitt commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3033#discussion_r226292672
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/GetFile.java
---
@@ -270,6 +280,9 @@ private FileFilter createFileFilter(final
ProcessContext context) {
return new FileFilter() {
@Override
public boolean accept(final File file) {
+ if (file.isDirectory()) {
+ return false;
--- End diff --
does filtering work differently with the streams? I ask because we want to
be able to support the same depth/recursive searches and this filter seems like
it would stop at dir level.
---