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:
Peter Turcsanyi 2022-09-09 09:24:59 +02:00 committed by exceptionfactory
parent a4a3bdbc98
commit e81466d4f3
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
1 changed files with 1 additions and 1 deletions

View File

@ -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());
} }