Skip to content

Commit aae4e15

Browse files
committed
Fix a bug in ket refresh
1 parent 606217c commit aae4e15

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

client_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -485,9 +485,9 @@ func testLockAcquireKill(t *testing.T, dbclient API) {
485485
}
486486
}()
487487

488-
time.Sleep(time.Second * 2)
488+
time.Sleep(time.Second * time.Duration(lockTTL*2))
489489

490-
log.Infof("2s timer. killing Lock1")
490+
log.Infof("%ds timer. killing Lock1", (2 * lockTTL))
491491
// At this point, lock1 should be holding the lock
492492
if !lock1.IsAcquired() {
493493
t.Fatalf("Lock1 failed to acquire lock")
@@ -566,7 +566,7 @@ func testServiceRegisterDeregister(t *testing.T, dbClient API) {
566566
}
567567

568568
// Wait a while to make sure background refresh is working correctly
569-
time.Sleep(time.Duration(srvTTL * 2))
569+
time.Sleep(time.Duration(srvTTL*2) * time.Second)
570570

571571
resp, err = dbClient.GetService("athena")
572572
if err != nil {

etcdLock.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package objdb
22

33
import (
4+
"strings"
45
"sync"
56
"time"
67

@@ -349,7 +350,8 @@ func (lk *etcdLock) watchLock() {
349350
}
350351
for {
351352
resp, err := watcher.Next(lk.watchCtx)
352-
if err != nil && err.Error() == client.ErrClusterUnavailable.Error() {
353+
if err != nil && (err.Error() == client.ErrClusterUnavailable.Error() ||
354+
strings.Contains(err.Error(), "context canceled")) {
353355
log.Infof("Stopping watch on key %s", keyName)
354356
return
355357
} else if err != nil {

etcdService.go

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ func (ep *EtcdClient) RegisterService(serviceInfo ServiceInfo) error {
7272
// create service state
7373
srvState := etcdServiceState{
7474
ServiceName: serviceInfo.ServiceName,
75+
KeyName: keyName,
7576
TTL: ttl,
7677
HostAddr: serviceInfo.HostAddr,
7778
Port: serviceInfo.Port,

0 commit comments

Comments
 (0)