From c99d0dfb337609767b7fd6cc176e545bd1de1f29 Mon Sep 17 00:00:00 2001 From: hkfires <10558748+hkfires@users.noreply.github.com> Date: Tue, 28 Oct 2025 19:51:05 +0800 Subject: [PATCH] fix(aistudio): remove no-op executor unregister on WS disconnect --- sdk/cliproxy/service.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/sdk/cliproxy/service.go b/sdk/cliproxy/service.go index 1fa863ad..eeccccab 100644 --- a/sdk/cliproxy/service.go +++ b/sdk/cliproxy/service.go @@ -237,9 +237,6 @@ func (s *Service) wsOnDisconnected(channelID string, reason error) { } ctx := context.Background() s.applyCoreAuthRemoval(ctx, channelID) - if s.coreManager != nil { - s.coreManager.UnregisterExecutor(channelID) - } } func (s *Service) applyCoreAuthAddOrUpdate(ctx context.Context, auth *coreauth.Auth) {