File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -175,17 +175,17 @@ func (ep *etcdPlugin) GetLocalAddr() (string, error) {
175
175
}
176
176
177
177
// Get ep state from etcd
178
- if _ , err := httpGetJSON ("http://localhost:2379/v2/stats/ep " , & epData ); err != nil {
179
- log .Errorf ("Error getting ep state. Err: %v" , err )
180
- return "" , errors .New ("Error getting ep state" )
178
+ if _ , err := httpGetJSON ("http://localhost:2379/v2/stats/self " , & epData ); err != nil {
179
+ log .Errorf ("Error getting self state. Err: %v" , err )
180
+ return "" , errors .New ("Error getting self state" )
181
181
}
182
182
183
183
var memData memData
184
184
185
185
// Get member list from etcd
186
186
if _ , err := httpGetJSON ("http://localhost:2379/v2/members" , & memData ); err != nil {
187
- log .Errorf ("Error getting ep state. Err: %v" , err )
188
- return "" , errors .New ("Error getting ep state" )
187
+ log .Errorf ("Error getting members state. Err: %v" , err )
188
+ return "" , errors .New ("Error getting members state" )
189
189
}
190
190
191
191
myName := epData .Name
You can’t perform that action at this time.
0 commit comments