opensumi / core

🚀 A framework helps you quickly build AI Native IDE products. https://preview.opensumi.com
https://opensumi.com
MIT License
2.81k stars 354 forks source link

fix: server's incorrect dispose of service center #3794

Closed opensumi[bot] closed 1 month ago

opensumi[bot] commented 1 month ago

Types

Background or solution

又梳理了一下重连会带来的一些问题

  1. rpc service center 和 channel 的 dispose 没有完全清理干净
  2. 新建 channel 没有删掉旧的, 旧 channel 仍然可以收到消息
  3. 重连会多次创建 Worker,导致通信很多报错
  4. EventQueue 逻辑有问题,当没有接收方的时候,没有存消息到队列中

Changelog

fix server's incorrect dispose of service center


Backport from #3785 a7a69f6518

Thanks to @bytemain for your valuable contribution.