NIFI-6350 Fixed misleading flow controller startup error message.

This closes #3516.

Signed-off-by: Andy LoPresto <alopresto@apache.org>
This commit is contained in:
Peter Wicks 2019-06-05 02:08:37 +00:00 committed by Andy LoPresto
parent 1d18735076
commit 2d3fce81c1
No known key found for this signature in database
GPG Key ID: 6EC293152D90B61D
1 changed files with 1 additions and 1 deletions

View File

@ -881,7 +881,7 @@ public abstract class ApplicationResource {
private void ensureFlowInitialized() {
if (!flowController.isInitialized()) {
throw new IllegalClusterStateException("Cluster is still in the process of voting on the appropriate Data Flow.");
throw new IllegalClusterStateException("The Flow Controller is initializing the Data Flow.");
}
}