Skip to content

Commit

Permalink
missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaffelson committed Oct 11, 2018
1 parent 3129413 commit 51b6001
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nipyapi/nifi/models/processor_status_dto.py
Expand Up @@ -195,7 +195,10 @@ def run_status(self, run_status):
:param run_status: The run_status of this ProcessorStatusDTO.
:type: str
"""
allowed_values = ["Running", "Stopped", "Disabled", "Invalid"]
# allowed_values = ["Running", "Stopped", "Disabled", "Invalid"]
# bugfix for missing status property
allowed_values = ["Running", "Stopped", "Disabled", "Invalid",
"validating"]
if run_status not in allowed_values:
raise ValueError(
"Invalid value for `run_status` ({0}), must be one of {1}"
Expand Down

0 comments on commit 51b6001

Please sign in to comment.