You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ab...@apache.org on 2022/11/16 20:51:48 UTC

[nifi] branch NIFI-10833 created (now ffcfbc8dc7)

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

aboda pushed a change to branch NIFI-10833
in repository https://gitbox.apache.org/repos/asf/nifi.git


      at ffcfbc8dc7 NIFI-10833 - Fix grammar error in ListenHTTP log msg

This branch includes the following new commits:

     new ffcfbc8dc7 NIFI-10833 - Fix grammar error in ListenHTTP log msg

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[nifi] 01/01: NIFI-10833 - Fix grammar error in ListenHTTP log msg

Posted by ab...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aboda pushed a commit to branch NIFI-10833
in repository https://gitbox.apache.org/repos/asf/nifi.git

commit ffcfbc8dc73840c1e501cad94bbcf21e41a17008
Author: Arpad Boda <ab...@apache.org>
AuthorDate: Wed Nov 16 21:51:37 2022 +0100

    NIFI-10833 - Fix grammar error in ListenHTTP log msg
---
 .../src/main/java/org/apache/nifi/processors/standard/ListenHTTP.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ListenHTTP.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ListenHTTP.java
index a35b9edc73..14a4ff3145 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ListenHTTP.java
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ListenHTTP.java
@@ -562,7 +562,7 @@ public class ListenHTTP extends AbstractSessionFactoryProcessor {
         for (final String id : findOldFlowFileIds(context)) {
             final FlowFileEntryTimeWrapper wrapper = flowFileMap.remove(id);
             if (wrapper != null) {
-                getLogger().warn("failed to received acknowledgment for HOLD with ID {} sent by {}; rolling back session", id, wrapper.getClientIP());
+                getLogger().warn("failed to receive acknowledgment for HOLD with ID {} sent by {}; rolling back session", id, wrapper.getClientIP());
                 wrapper.session.rollback();
             }
         }