mirror of https://github.com/apache/nifi.git
NIFI-10288 Better describe forward slash requirements for Prefix property in ListS3
This closes #6477 Co-authored-by: Andrew Lim <andrewlim.apache@gmail.com> Co-authored-by: David Handermann <exceptionfactory@apache.org> Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
parent
9a4ce2607d
commit
da0fb234d6
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue