Skip to content

Commit 75ae6c7

Browse files
jojimtshaleman
jojimt
authored andcommitted
Add retry for service watch (#18)
1 parent 769c7ec commit 75ae6c7

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

etcdService.go

+13
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,22 @@ func (ep *EtcdClient) GetService(name string) ([]ServiceInfo, error) {
9393

9494
func (ep *EtcdClient) getServiceState(key string) (uint64, []ServiceInfo, error) {
9595
var srvcList []ServiceInfo
96+
retryCount := 0
9697

9798
// Get the object from etcd client
9899
resp, err := ep.kapi.Get(context.Background(), key, &client.GetOptions{Recursive: true, Sort: true})
100+
for err != nil && err.Error() == client.ErrClusterUnavailable.Error() {
101+
// Retry after a delay
102+
retryCount++
103+
if retryCount%16 == 0 {
104+
log.Warnf("%v -- Retrying...", err)
105+
}
106+
107+
time.Sleep(time.Second)
108+
resp, err = ep.kapi.Get(context.Background(), key,
109+
&client.GetOptions{Recursive: true, Sort: true})
110+
}
111+
99112
if err != nil {
100113
if strings.Contains(err.Error(), "Key not found") {
101114
return 0, nil, nil

0 commit comments

Comments
 (0)