@@ -100,6 +100,16 @@ func (self *etcdPlugin) GetService(name string) ([]ServiceInfo, error) {
100
100
return srvcList , nil
101
101
}
102
102
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
+
103
113
// Watch for a service
104
114
func (self * etcdPlugin ) WatchService (name string ,
105
115
eventCh chan WatchServiceEvent , stopCh chan bool ) error {
@@ -111,9 +121,16 @@ func (self *etcdPlugin) WatchService(name string,
111
121
112
122
// Start the watch thread
113
123
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 )
115
132
// Start the watch
116
- _ , err : = self .client .Watch (keyName , 0 , true , watchCh , watchStopCh )
133
+ _ , err = self .client .Watch (keyName , watchIndex , true , watchCh , watchStopCh )
117
134
if (err != nil ) && (err != etcd .ErrWatchStoppedByUser ) {
118
135
log .Errorf ("Error watching service %s. Err: %v" , keyName , err )
119
136
0 commit comments