NIFI-12784 Set Path Not Found as a Dependent Property in EvaluateJsonPath

This closes #8420

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
dan-s1 2024-02-16 19:28:18 +00:00 committed by exceptionfactory
parent 043e2dd3ff
commit 0a2ba317c0
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -123,6 +123,7 @@ public class EvaluateJsonPath extends AbstractJsonPathProcessor {
.required(true)
.allowableValues(PATH_NOT_FOUND_WARN, PATH_NOT_FOUND_IGNORE, PATH_NOT_FOUND_SKIP)
.defaultValue(PATH_NOT_FOUND_IGNORE)
.dependsOn(DESTINATION, DESTINATION_ATTRIBUTE)
.build();
public static final Relationship REL_MATCH = new Relationship.Builder()