Github user hemantha-kumara commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3000#discussion_r219253879
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/util/FileTransfer.java
---
@@ -141,6 +141,13 @@ default String getAbsolutePath(FlowFile flowFile,
String remotePath) throws IOEx
.defaultValue("false")
.allowableValues("true", "false")
.build();
+ public static final PropertyDescriptor FOLLOW_SYMLINK = new
PropertyDescriptor.Builder()
--- End diff --
as this property is common for both ftp and sftp, will it be good if I
mention only ftp-follow-symlink ? as earlier properties like recursive, file
regex and other properties names kept generic hence I had put only Follow
symlink.
---