@@ -17,20 +17,19 @@ const EtcdErrorCodeKeyExists = 105
17
17
18
18
// Lock object
19
19
type Lock struct {
20
- name string
21
- myID string
22
- isAcquired bool
23
- isReleased bool
24
- holderID string
25
- ttl uint64
26
- timeout uint64
27
- modifiedIndex uint64
28
- eventChan chan LockEvent
29
- stopChan chan bool
30
- watchCh chan * etcd.Response
31
- watchStopCh chan bool
32
- client * etcd.Client
33
- mutex * sync.Mutex
20
+ name string
21
+ myID string
22
+ isAcquired bool
23
+ isReleased bool
24
+ holderID string
25
+ ttl uint64
26
+ timeout uint64
27
+ eventChan chan LockEvent
28
+ stopChan chan bool
29
+ watchCh chan * etcd.Response
30
+ watchStopCh chan bool
31
+ client * etcd.Client
32
+ mutex * sync.Mutex
34
33
}
35
34
36
35
// Create a new lock
@@ -77,14 +76,11 @@ func (ep *Lock) Release() error {
77
76
// If the lock was acquired, release it
78
77
if ep .isAcquired {
79
78
// Update TTL on the lock
80
- resp , err := ep .client .CompareAndDelete (keyName , ep .myID , ep . modifiedIndex )
79
+ resp , err := ep .client .CompareAndDelete (keyName , ep .myID , 0 )
81
80
if err != nil {
82
81
log .Errorf ("Error Deleting key. Err: %v" , err )
83
82
} else {
84
83
log .Infof ("Deleted key lock %s, Resp: %+v" , keyName , resp )
85
-
86
- // Update modifiedIndex
87
- ep .modifiedIndex = resp .Node .ModifiedIndex
88
84
}
89
85
}
90
86
@@ -173,7 +169,6 @@ func (ep *Lock) acquireLock() {
173
169
// Successfully acquired the lock
174
170
ep .isAcquired = true
175
171
ep .holderID = ep .myID
176
- ep .modifiedIndex = resp .Node .ModifiedIndex
177
172
ep .mutex .Unlock ()
178
173
179
174
// Send acquired message to event channel
@@ -197,7 +192,6 @@ func (ep *Lock) acquireLock() {
197
192
// We have already acquired the lock. just keep refreshing it
198
193
ep .isAcquired = true
199
194
ep .holderID = ep .myID
200
- ep .modifiedIndex = resp .Node .ModifiedIndex
201
195
ep .mutex .Unlock ()
202
196
203
197
// Send acquired message to event channel
@@ -300,8 +294,7 @@ func (ep *Lock) refreshLock() {
300
294
select {
301
295
case <- time .After (refreshIntvl ):
302
296
// Update TTL on the lock
303
- resp , err := ep .client .CompareAndSwap (keyName , ep .myID , ep .ttl ,
304
- ep .myID , ep .modifiedIndex )
297
+ resp , err := ep .client .CompareAndSwap (keyName , ep .myID , ep .ttl , ep .myID , 0 )
305
298
if err != nil {
306
299
log .Errorf ("Error updating TTl. Err: %v" , err )
307
300
@@ -317,11 +310,6 @@ func (ep *Lock) refreshLock() {
317
310
return
318
311
} else {
319
312
log .Debugf ("Refreshed TTL on lock %s, Resp: %+v" , keyName , resp )
320
-
321
- ep .mutex .Lock ()
322
- // Update modifiedIndex
323
- ep .modifiedIndex = resp .Node .ModifiedIndex
324
- ep .mutex .Unlock ()
325
313
}
326
314
case watchResp := <- ep .watchCh :
327
315
// Since we already acquired the lock, nothing to do here
0 commit comments