Return context cancelations as a locker locked error
This commit is contained in:
parent
1e52ffef64
commit
6a4178648f
|
@ -51,7 +51,9 @@ func (l *Locker) TryAcquire(ctx context.Context) error {
|
|||
return nil
|
||||
case <-ctx.Done():
|
||||
if err := ctx.Err(); err != nil {
|
||||
return err
|
||||
if errors.Is(err, context.DeadlineExceeded) || errors.Is(err, context.Canceled) {
|
||||
return ErrLockerLocked
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user