NIFI-10833 - Fix grammar error in ListenHTTP log msg

This commit is contained in:
Arpad Boda 2022-11-16 21:51:37 +01:00 committed by thenatog
parent 009d641576
commit 7a449dbcee
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}