Remove deprecated operation mutex in instanceManager

This commit is contained in:
2025-10-21 22:38:00 +02:00
parent bac18b5626
commit 9bb106a1ce

View File

@@ -40,8 +40,7 @@ type instanceManager struct {
localNodeName string // Name of the local node localNodeName string // Name of the local node
// Synchronization // Synchronization
operationMu sync.Mutex // DEPRECATED: Use instanceLocks for per-instance operations instanceLocks sync.Map // map[string]*sync.Mutex - per-instance locks for concurrent operations
instanceLocks sync.Map // map[string]*sync.Mutex - per-instance locks for concurrent operations
shutdownOnce sync.Once shutdownOnce sync.Once
} }