From d6d4e45249abd91abb255c1df829b993e70da690 Mon Sep 17 00:00:00 2001 From: TheBurchLog <5104941+TheBurchLog@users.noreply.github.com> Date: Mon, 22 Jan 2024 11:12:20 -0500 Subject: [PATCH] Changed connection statuses --- brewtils/models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/brewtils/models.py b/brewtils/models.py index fabefec4..5e2fbe6f 100644 --- a/brewtils/models.py +++ b/brewtils/models.py @@ -1499,11 +1499,13 @@ class Connection(BaseModel): schema = "ConnectionSchema" CONNECTION_STATUSES = { - "ENABLED", # Sending + "PUBLISHING", + "RECEIVING", "DISABLED" # Stopped via config or API "NOT_CONFIGURED", # Not enabled in configuration file "MISSING_CONFIGURATION", # Missing configuration file "UNREACHABLE", # Unable to send message + "UNRESPONSIVE", # Haven't seen a message in N timeframe "ERROR", # Error occured, outside of unreachable "UNKNOWN", }