You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2021/10/19 15:25:28 UTC

[nifi] branch main updated: NIFI-9297 Correct typo in documentation for listing strategy in AbstractListProcessor

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

pvillard 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 a380fb2  NIFI-9297 Correct typo in documentation for listing strategy in AbstractListProcessor
a380fb2 is described below

commit a380fb29649708f04ed7049402dee693cd76d4be
Author: Bryan Bende <bb...@gmail.com>
AuthorDate: Tue Oct 19 11:21:42 2021 -0400

    NIFI-9297 Correct typo in documentation for listing strategy in AbstractListProcessor
    
    Signed-off-by: Pierre Villard <pi...@gmail.com>
    
    This closes #5466.
---
 .../java/org/apache/nifi/processor/util/list/AbstractListProcessor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/src/main/java/org/apache/nifi/processor/util/list/AbstractListProcessor.java b/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/src/main/java/org/apache/nifi/processor/util/list/AbstractListProcessor.java
index 7ac3db6..e494b8c 100644
--- a/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/src/main/java/org/apache/nifi/processor/util/list/AbstractListProcessor.java
+++ b/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/src/main/java/org/apache/nifi/processor/util/list/AbstractListProcessor.java
@@ -196,7 +196,7 @@ public abstract class AbstractListProcessor<T extends ListableEntity> extends Ab
 
     public static final AllowableValue BY_ENTITIES = new AllowableValue("entities", "Tracking Entities",
             "This strategy tracks information of all the listed entities within the latest 'Entity Tracking Time Window' to determine new/updated entities." +
-                    " This strategy can pick entities having old timestamp that can be missed with 'Tracing Timestamps'." +
+                    " This strategy can pick entities having old timestamp that can be missed with 'Tracking Timestamps'." +
                     " Works even when multiple subdirectories are being written at the same time while listing is running." +
                     " However additional DistributedMapCache controller service is required and more JVM heap memory is used." +
                     " See the description of 'Entity Tracking Time Window' property for further details on how it works.");