aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weed/wdclient/resource_pool/semaphore.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/wdclient/resource_pool/semaphore.go b/weed/wdclient/resource_pool/semaphore.go
index ff35d5bc5..9bd6afc33 100644
--- a/weed/wdclient/resource_pool/semaphore.go
+++ b/weed/wdclient/resource_pool/semaphore.go
@@ -105,7 +105,7 @@ func (s *unboundedSemaphore) Release() {
s.lock.Lock()
s.counter += 1
if s.counter > 0 {
- // Not broadcasting here since it's unlike we can satify all waiting
+ // Not broadcasting here since it's unlike we can satisfy all waiting
// goroutines. Instead, we will Signal again if there are left over
// quota after Acquire, in case of lost wakeups.
s.cond.Signal()