Skip to content

Commit 0840303

Browse files
committed
Get current holder by reading from statestore
1 parent c03ba09 commit 0840303

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

etcdLock.go

+11-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,17 @@ func (ep *Lock) IsAcquired() bool {
124124
func (ep *Lock) GetHolder() string {
125125
ep.mutex.Lock()
126126
defer ep.mutex.Unlock()
127-
return ep.holderID
127+
128+
keyName := "/contiv.io/lock/" + ep.name
129+
130+
// Get the current value
131+
resp, err := ep.client.Get(keyName, false, false)
132+
if err != nil {
133+
log.Warnf("Could not get current holder for lock %s", ep.name)
134+
return ""
135+
}
136+
137+
return resp.Node.Value
128138
}
129139

130140
// *********************** Internal functions *************

0 commit comments

Comments
 (0)