[management] Remove all store locks from grpc side (#4374)

This commit is contained in:
Pascal Fischer
2025-08-20 12:41:14 +02:00
committed by GitHub
parent 86555c44f7
commit f9d64a06c2
4 changed files with 0 additions and 61 deletions

View File

@@ -170,8 +170,6 @@ type Store interface {
// AcquireWriteLockByUID should attempt to acquire a lock for write purposes and return a function that releases the lock
AcquireWriteLockByUID(ctx context.Context, uniqueID string) func()
// AcquireReadLockByUID should attempt to acquire lock for read purposes and return a function that releases the lock
AcquireReadLockByUID(ctx context.Context, uniqueID string) func()
// AcquireGlobalLock should attempt to acquire a global lock and return a function that releases the lock
AcquireGlobalLock(ctx context.Context) func()