Merge pull request #1711 from NousResearch/fix/matrix-mattermost-mark-connected

fix(gateway): Matrix and Mattermost never report as connected
This commit is contained in:
Teknium
2026-03-17 04:13:31 -07:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -220,6 +220,7 @@ class MatrixAdapter(BasePlatformAdapter):
# Start the sync loop.
self._sync_task = asyncio.create_task(self._sync_loop())
self._mark_connected()
return True
async def disconnect(self) -> None:

View File

@@ -222,6 +222,7 @@ class MattermostAdapter(BasePlatformAdapter):
# Start WebSocket in background.
self._ws_task = asyncio.create_task(self._ws_loop())
self._mark_connected()
return True
async def disconnect(self) -> None: