Merge branch '3.0' into feature/ai-copilot-bridge

This commit is contained in:
Guobin Yue 2026-03-09 21:50:37 +08:00 committed by GitHub
commit 25f2d1b56b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -349,8 +349,10 @@ class BaseNode:
Stop the node process.
"""
await self.stop_wrap_console()
self.status = "stopped"
try:
await self.stop_wrap_console()
finally:
self.status = "stopped"
def suspend(self):
"""