NIFI-259 Updating logger message for AbstractListProcessor to reference State Manager in onTrigger instead of the distributed cache.

This commit is contained in:
Aldrin Piri 2016-02-05 12:55:06 -05:00
parent 29fb9c9393
commit 16f1852453
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ public abstract class AbstractListProcessor<T extends ListableEntity> extends Ab
justElectedPrimaryNode = false;
}
} catch (final IOException ioe) {
getLogger().error("Failed to retrieve timestamp of last listing from Distributed Cache Service. Will not perform listing until this is accomplished.");
getLogger().error("Failed to retrieve timestamp of last listing from the State Manager. Will not perform listing until this is accomplished.");
context.yield();
return;
}