Skip to content

Commit 51b6001

Browse files
committed
missed one
1 parent 3129413 commit 51b6001

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

nipyapi/nifi/models/processor_status_dto.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,10 @@ def run_status(self, run_status):
195195
:param run_status: The run_status of this ProcessorStatusDTO.
196196
:type: str
197197
"""
198-
allowed_values = ["Running", "Stopped", "Disabled", "Invalid"]
198+
# allowed_values = ["Running", "Stopped", "Disabled", "Invalid"]
199+
# bugfix for missing status property
200+
allowed_values = ["Running", "Stopped", "Disabled", "Invalid",
201+
"validating"]
199202
if run_status not in allowed_values:
200203
raise ValueError(
201204
"Invalid value for `run_status` ({0}), must be one of {1}"

0 commit comments

Comments
 (0)