1
0
mirror of https://github.com/minio/minio synced 2024-07-05 17:08:43 +00:00

correct RefreshCall & UnlockCall of DefaultTimeouts (#15288)

This commit is contained in:
LHHDZ 2022-07-14 22:20:48 +08:00 committed by GitHub
parent a6f40dd574
commit df911c9b9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,8 +82,8 @@ type Timeouts struct {
// DefaultTimeouts contains default timeouts.
var DefaultTimeouts = Timeouts{
Acquire: drwMutexAcquireTimeout,
RefreshCall: drwMutexUnlockCallTimeout,
UnlockCall: drwMutexRefreshCallTimeout,
RefreshCall: drwMutexRefreshCallTimeout,
UnlockCall: drwMutexUnlockCallTimeout,
ForceUnlockCall: drwMutexForceUnlockCallTimeout,
}