mirror of https://github.com/apache/nifi.git
NIFI-3459 Fixed documentation for UnpackContent File Filter.
This closes #1558. Signed-off-by: Andy LoPresto <alopresto@apache.org>
This commit is contained in:
parent
7c6f2dc677
commit
5990db39ae
|
@ -124,7 +124,7 @@ public class UnpackContent extends AbstractProcessor {
|
|||
|
||||
public static final PropertyDescriptor FILE_FILTER = new PropertyDescriptor.Builder()
|
||||
.name("File Filter")
|
||||
.description("Only files whose names match the given regular expression will be extracted (tar/zip only)")
|
||||
.description("Only files contained in the archive whose names match the given regular expression will be extracted (tar/zip only)")
|
||||
.required(true)
|
||||
.defaultValue(".*")
|
||||
.addValidator(StandardValidators.REGULAR_EXPRESSION_VALIDATOR)
|
||||
|
|
Loading…
Reference in New Issue