api: More reliable session check

This commit is contained in:
Armon Dadgar 2015-01-13 11:50:57 -08:00
parent 02566d0a02
commit 229ee483cb
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,6 @@ import (
"encoding/json"
"fmt"
"path"
"strings"
"sync"
"time"
)
@ -398,8 +397,9 @@ func (s *Semaphore) pruneDeadHolders(lock *semaphoreLock, pairs KVPairs) {
// Gather all the live holders
alive := make(map[string]struct{}, len(pairs))
for _, pair := range pairs {
session := strings.TrimPrefix(pair.Key, s.opts.Prefix)
alive[session] = struct{}{}
if pair.Session != "" {
alive[pair.Session] = struct{}{}
}
}
// Remove any holders that are dead