@cryptotaxi247 / CoPilot / commits / 6fac90f7

chore: update relocating_to in Routing for Graylog Index to string rather than None

Taylor committed Sep 4, 2024 at 07:53 UTC 6fac90f7448a3d30bc07f40bb919e47d67d2b03e
1 file changed +1 -1
backend/app/connectors/graylog/schema/collector.py
+1 -1
@@ -37,7 +37,7 @@ class Routing(BaseModel):
37 node_id: str
38 node_name: str
39 primary: bool
40 - relocating_to: Optional[None] # Assuming this is always None based on your example
40 + relocating_to: Optional[str] = Field(None, description="Relocating to")
41 state: str
42
43