This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new da0fb234d6 NIFI-10288 Better describe forward slash requirements for 
Prefix property in ListS3
da0fb234d6 is described below

commit da0fb234d6fa94bce0b4ca77ec12ec5f6e8b4a12
Author: Andrew Lim <[email protected]>
AuthorDate: Mon Oct 3 17:57:24 2022 -0400

    NIFI-10288 Better describe forward slash requirements for Prefix property 
in ListS3
    
    This closes #6477
    
    Co-authored-by: Andrew Lim <[email protected]>
    Co-authored-by: David Handermann <[email protected]>
    Signed-off-by: David Handermann <[email protected]>
---
 .../src/main/java/org/apache/nifi/processors/aws/s3/ListS3.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/ListS3.java
 
b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/ListS3.java
index 57065f3a41..d1e1ffc1ea 100644
--- 
a/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/ListS3.java
+++ 
b/nifi-nar-bundles/nifi-aws-bundle/nifi-aws-processors/src/main/java/org/apache/nifi/processors/aws/s3/ListS3.java
@@ -181,7 +181,7 @@ public class ListS3 extends AbstractS3Processor implements 
VerifiableProcessor {
             
.expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
             .required(false)
             .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
-            .description("The prefix used to filter the object list. In most 
cases, it should end with a forward slash ('/').")
+            .description("The prefix used to filter the object list. Do not 
begin with a forward slash '/'. In most cases, it should end with a forward 
slash '/'.")
             .build();
 
     public static final PropertyDescriptor USE_VERSIONS = new Builder()

Reply via email to