This is an automated email from the ASF dual-hosted git repository.

pvillard31 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 91bcaeb5f30 NIFI-16237 Fixed order for Null Value options in JSON Path 
Processor (#11576)
91bcaeb5f30 is described below

commit 91bcaeb5f30f621f4c21ca7d74ed131f4eedf207
Author: David Handermann <[email protected]>
AuthorDate: Fri Aug 21 02:05:52 2026 -0500

    NIFI-16237 Fixed order for Null Value options in JSON Path Processor 
(#11576)
---
 .../org/apache/nifi/processors/standard/AbstractJsonPathProcessor.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractJsonPathProcessor.java
 
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractJsonPathProcessor.java
index 8559206f3b1..efa022b2f19 100644
--- 
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractJsonPathProcessor.java
+++ 
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AbstractJsonPathProcessor.java
@@ -61,7 +61,7 @@ public abstract class AbstractJsonPathProcessor extends 
AbstractProcessor {
             .name("Null Value Representation")
             .description("Indicates the desired representation of JSON Path 
expressions resulting in a null value.")
             .required(true)
-            .allowableValues(NULL_REPRESENTATION_MAP.keySet())
+            .allowableValues(EMPTY_STRING_OPTION, NULL_STRING_OPTION)
             .defaultValue(EMPTY_STRING_OPTION)
             .build();
 

Reply via email to