auto-sync: 2026-05-19 23:32:20

This commit is contained in:
cfdaily
2026-05-19 23:32:20 +08:00
parent 6e5d389045
commit 622210d653
+7
View File
@@ -92,6 +92,13 @@ class Ticker:
return
self._running = True
self._task = asyncio.create_task(self._loop())
# 启动 InboxWatcher(即时事件监听)
if self.inbox_watcher:
try:
await self.inbox_watcher.start()
logger.info("InboxWatcher started")
except Exception as e:
logger.warning("InboxWatcher start failed: %s", e)
logger.info("Ticker started (interval=%.1fs)", self.tick_interval)
async def stop(self) -> None: