You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by al...@apache.org on 2017/03/03 00:19:26 UTC

nifi git commit: NIFI-3459 Fixed documentation for UnpackContent File Filter. [Forced Update!]

Repository: nifi
Updated Branches:
  refs/heads/master f168597d2 -> 5990db39a (forced update)


NIFI-3459 Fixed documentation for UnpackContent File Filter.

This closes #1558.

Signed-off-by: Andy LoPresto <al...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/5990db39
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/5990db39
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/5990db39

Branch: refs/heads/master
Commit: 5990db39aeae399eedc82a37cb478e14ce278f63
Parents: 7c6f2dc
Author: Giovanni Lanzani <gg...@users.noreply.github.com>
Authored: Thu Mar 2 22:43:17 2017 +0100
Committer: Andy LoPresto <al...@apache.org>
Committed: Thu Mar 2 16:19:11 2017 -0800

----------------------------------------------------------------------
 .../java/org/apache/nifi/processors/standard/UnpackContent.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/5990db39/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UnpackContent.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UnpackContent.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UnpackContent.java
index 18015fa..1e7f05b 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UnpackContent.java
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UnpackContent.java
@@ -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)