Skip to content

Commit 2afee8d

Browse files
author
jojimt
committed
Fix #256
1 parent ada37fd commit 2afee8d

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

etcdService.go

+19-2
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,16 @@ func (self *etcdPlugin) GetService(name string) ([]ServiceInfo, error) {
100100
return srvcList, nil
101101
}
102102

103+
func (self *etcdPlugin) getCurrentIndex(key string) (uint64, error) {
104+
// Get the object from etcd client
105+
resp, err := self.client.Get(key, true, false)
106+
if err != nil {
107+
return 0, err
108+
}
109+
110+
return resp.Node.ModifiedIndex, nil
111+
}
112+
103113
// Watch for a service
104114
func (self *etcdPlugin) WatchService(name string,
105115
eventCh chan WatchServiceEvent, stopCh chan bool) error {
@@ -111,9 +121,16 @@ func (self *etcdPlugin) WatchService(name string,
111121

112122
// Start the watch thread
113123
go func() {
114-
log.Infof("Watching for service: %s", keyName)
124+
// Watch from current index to force a read of the initial state
125+
watchIndex, err := self.getCurrentIndex(keyName)
126+
if (err != nil) {
127+
log.Fatalf("Unable to watch service key: %s - %v", keyName,
128+
err)
129+
}
130+
131+
log.Infof("Watching for service: %s at index %v", keyName, watchIndex)
115132
// Start the watch
116-
_, err := self.client.Watch(keyName, 0, true, watchCh, watchStopCh)
133+
_, err = self.client.Watch(keyName, watchIndex, true, watchCh, watchStopCh)
117134
if (err != nil) && (err != etcd.ErrWatchStoppedByUser) {
118135
log.Errorf("Error watching service %s. Err: %v", keyName, err)
119136

0 commit comments

Comments
 (0)