fix: a cosmetic error reporting with a lock timeout (#16788)

This commit is contained in:
Anis Elleuch 2023-03-10 00:16:13 +01:00 committed by GitHub
parent a547bf517d
commit 5c087bdcad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -170,7 +170,7 @@ func (di *distLockInstance) GetLock(ctx context.Context, timeout *dynamicTimeout
RetryInterval: timeout.RetryInterval(),
}) {
timeout.LogFailure()
cancel()
defer cancel()
if err := newCtx.Err(); err == context.Canceled {
return LockContext{ctx: ctx, cancel: func() {}}, err
}
@ -199,7 +199,7 @@ func (di *distLockInstance) GetRLock(ctx context.Context, timeout *dynamicTimeou
RetryInterval: timeout.RetryInterval(),
}) {
timeout.LogFailure()
cancel()
defer cancel()
if err := newCtx.Err(); err == context.Canceled {
return LockContext{ctx: ctx, cancel: func() {}}, err
}