Remove unused DefaultSemaphoreRetryTime

Fixes #932

DefaultSemaphoreRetryTime is actually unused, unlike DefaultLockRetryTime.
This commit is contained in:
highlyunavailable 2015-05-15 08:25:02 -07:00
parent 490c4e1f8c
commit 536db1fb9f
1 changed files with 0 additions and 5 deletions

View File

@ -22,11 +22,6 @@ const (
// a Semaphore acquisition.
DefaultSemaphoreWaitTime = 15 * time.Second
// DefaultSemaphoreRetryTime is how long we wait after a failed lock acquisition
// before attempting to do the lock again. This is so that once a lock-delay
// is in affect, we do not hot loop retrying the acquisition.
DefaultSemaphoreRetryTime = 5 * time.Second
// DefaultSemaphoreKey is the key used within the prefix to
// use for coordination between all the contenders.
DefaultSemaphoreKey = ".lock"