mirror of https://github.com/apache/nifi.git
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:
parent
043e2dd3ff
commit
0a2ba317c0
|
@ -123,6 +123,7 @@ public class EvaluateJsonPath extends AbstractJsonPathProcessor {
|
||||||
.required(true)
|
.required(true)
|
||||||
.allowableValues(PATH_NOT_FOUND_WARN, PATH_NOT_FOUND_IGNORE, PATH_NOT_FOUND_SKIP)
|
.allowableValues(PATH_NOT_FOUND_WARN, PATH_NOT_FOUND_IGNORE, PATH_NOT_FOUND_SKIP)
|
||||||
.defaultValue(PATH_NOT_FOUND_IGNORE)
|
.defaultValue(PATH_NOT_FOUND_IGNORE)
|
||||||
|
.dependsOn(DESTINATION, DESTINATION_ATTRIBUTE)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
public static final Relationship REL_MATCH = new Relationship.Builder()
|
public static final Relationship REL_MATCH = new Relationship.Builder()
|
||||||
|
|
Loading…
Reference in New Issue