Skip to content

Commit

Permalink
Adding configuration error status
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog authored Feb 8, 2024
1 parent 48e149a commit 3667d7b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions brewtils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1439,6 +1439,7 @@ class Garden(BaseModel):
"BLOCKED",
"STOPPED",
"NOT_CONFIGURED",
"CONFIGURATION_ERROR",
"UNREACHABLE",
"ERROR",
"UNKNOWN",
Expand Down Expand Up @@ -1504,6 +1505,7 @@ class Connection(BaseModel):
"DISABLED" # Stopped via config or API
"NOT_CONFIGURED", # Not enabled in configuration file
"MISSING_CONFIGURATION", # Missing configuration file
"CONFIGURATION_ERROR", # Unable to load configuration file
"UNREACHABLE", # Unable to send message
"UNRESPONSIVE", # Haven't seen a message in N timeframe
"ERROR", # Error occured, outside of unreachable
Expand Down

0 comments on commit 3667d7b

Please sign in to comment.