This is an automated email from the ASF dual-hosted git repository.
exceptionfactory 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 b3c8762d54 NIFI-15396 Added RUN_ONCE to Processor State allowable
values (#10702)
b3c8762d54 is described below
commit b3c8762d5454719daa714fb1fd059ba58cbc6020
Author: Pierre Villard <[email protected]>
AuthorDate: Mon Dec 29 17:19:49 2025 +0100
NIFI-15396 Added RUN_ONCE to Processor State allowable values (#10702)
Signed-off-by: David Handermann <[email protected]>
---
.../src/main/java/org/apache/nifi/web/api/dto/ProcessorDTO.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/ProcessorDTO.java
b/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/ProcessorDTO.java
index c31e20bc59..434f231b3d 100644
---
a/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/ProcessorDTO.java
+++
b/nifi-framework-bundle/nifi-framework/nifi-client-dto/src/main/java/org/apache/nifi/web/api/dto/ProcessorDTO.java
@@ -102,10 +102,10 @@ public class ProcessorDTO extends ComponentDTO {
}
/**
- * @return The state of this processor. Possible states are 'RUNNING',
'STOPPED', and 'DISABLED'
+ * @return The state of this processor. Possible states are 'RUNNING',
'STOPPED', 'DISABLED', and 'RUN_ONCE'
*/
@Schema(description = "The state of the processor",
- allowableValues = {"RUNNING", "STOPPED", "DISABLED"}
+ allowableValues = {"RUNNING", "STOPPED", "DISABLED", "RUN_ONCE"}
)
public String getState() {
return state;