Skip to content

Commit

Permalink
NIFI-10833 - Fix grammar error in ListenHTTP log msg
Browse files Browse the repository at this point in the history
  • Loading branch information
arpadboda authored and lizhizhou committed Jan 2, 2023
1 parent cc5f491 commit 3e834e3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -562,7 +562,7 @@ public void onTrigger(final ProcessContext context, final ProcessSessionFactory
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();
}
}
Expand Down

0 comments on commit 3e834e3

Please sign in to comment.