Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3000#discussion_r218842951
--- 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 --
Could you change to:
````java
...
.name("ftp-follow-symlink")
.displayName("Follow symlink")
...
````
---