Skip to content

Commit

Permalink
nifi-3785 Removed Reporting Tasks check and fixed spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
Freedom9339 committed Nov 6, 2023
1 parent 958c591 commit 73d4017
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3043,10 +3043,6 @@ private void isReferencesDisabled(Set<ComponentNode> nodes) {
if (controllerNode.isActive())
throw new IllegalStateException("Cannot move controller service. Referenced controller services " + controllerNode + " is enabled");
}
if (node instanceof ReportingTaskNode taskNode) {
if (taskNode.isRunning())
throw new IllegalStateException("Cannot move controller service. Referenced task " + taskNode + " is running");
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ public Response updateControllerService(
}

/**
* Moves the specified Controller Service to paren/child process groups.
* Moves the specified Controller Service to parent/child process groups.
*
* @param httpServletRequest request
* @param id The id of the controller service to update.
Expand Down

0 comments on commit 73d4017

Please sign in to comment.