fix compilation

This commit is contained in:
chrislu 2023-09-23 12:13:32 -07:00
parent 0414b68a4f
commit 322af1fc04

View file

@ -61,7 +61,7 @@ func (lt *LockTable[T]) AcquireLock(intention string, key T, lockType LockType)
}
lt.mu.Unlock()
lock = lt.NewActiveLock(intention)
lock = lt.NewActiveLock(intention, lockType)
// If the lock is held exclusively, wait
entry.mu.Lock()