This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new e81466d4f3 NIFI-10465: Fixed error message for invalid Controller
Service type
e81466d4f3 is described below
commit e81466d4f36eccab5be3164a71f1ae2dca003b46
Author: Peter Turcsanyi <[email protected]>
AuthorDate: Fri Sep 9 09:24:59 2022 +0200
NIFI-10465: Fixed error message for invalid Controller Service type
This closes #6381
Signed-off-by: David Handermann <[email protected]>
---
.../java/org/apache/nifi/controller/service/GhostControllerService.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/GhostControllerService.java
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/GhostControllerService.java
index ff0086b387..7d80072bd8 100644
---
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/GhostControllerService.java
+++
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/service/GhostControllerService.java
@@ -47,7 +47,7 @@ public class GhostControllerService implements
ControllerService {
.input("Any Property")
.subject("Missing Controller Service")
.valid(false)
- .explanation("Controller Service is of type " + canonicalClassName
+ ", but this is not a valid Reporting Task type")
+ .explanation("Controller Service is of type " + canonicalClassName
+ ", but this is not a valid Controller Service type")
.build());
}