From 6b26e35a9d459ba5db7fa4611f253f9692de7748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Flc=E3=82=9B?= Date: Thu, 15 Feb 2024 22:09:24 +0800 Subject: [PATCH] fix(coordinator): Fix the bug that when closing, it doesn't delete (#99) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Flcă‚› --- coordinator/manager.go | 1 - 1 file changed, 1 deletion(-) diff --git a/coordinator/manager.go b/coordinator/manager.go index 2871bbf0..823a05bf 100644 --- a/coordinator/manager.go +++ b/coordinator/manager.go @@ -33,7 +33,6 @@ func (m *Manager) Close(identifier string) { if c, ok := m.coordinators[identifier]; ok { c.Close() - delete(m.coordinators, identifier) } }