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
commit 05aefeddc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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: