mirror of https://github.com/apache/nifi.git
NIFI-259 Updating logger message for AbstractListProcessor to reference State Manager in onTrigger instead of the distributed cache.
This commit is contained in:
parent
29fb9c9393
commit
16f1852453
|
@ -345,7 +345,7 @@ public abstract class AbstractListProcessor<T extends ListableEntity> extends Ab
|
||||||
justElectedPrimaryNode = false;
|
justElectedPrimaryNode = false;
|
||||||
}
|
}
|
||||||
} catch (final IOException ioe) {
|
} 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();
|
context.yield();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue