NIFI-4014: Correcting Event Type text in S2S provenance reporting task

Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com>

This closes #1887.
This commit is contained in:
Joe Gresock 2017-06-03 16:08:43 +00:00 committed by Pierre Villard
parent e1880785d0
commit 3ef0fa48da
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public class SiteToSiteProvenanceReportingTask extends AbstractSiteToSiteReporti
.name("s2s-prov-task-event-filter")
.displayName("Event Type")
.description("Comma-separated list of event types that will be used to filter the provenance events sent by the reporting task. "
+ "Available event types are " + ProvenanceEventType.values() + ". If no filter is set, all the events are sent. If "
+ "Available event types are " + Arrays.deepToString(ProvenanceEventType.values()) + ". If no filter is set, all the events are sent. If "
+ "multiple filters are set, the filters are cumulative.")
.required(false)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)