mirror of https://github.com/apache/nifi.git
NIFI-10465: Fixed error message for invalid Controller Service type
This closes #6381 Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
parent
a4a3bdbc98
commit
e81466d4f3
|
@ -47,7 +47,7 @@ public class GhostControllerService implements ControllerService {
|
||||||
.input("Any Property")
|
.input("Any Property")
|
||||||
.subject("Missing Controller Service")
|
.subject("Missing Controller Service")
|
||||||
.valid(false)
|
.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());
|
.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue