Skip to content
Snippets Groups Projects
Commit 7f803506 authored by ale's avatar ale
Browse files

update watch index on error 401

Make progress anyway when the history is gone.
parent 226cfc8c
No related branches found
No related tags found
No related merge requests found
......@@ -201,6 +201,15 @@ func (w *ConfigSyncer) Start() {
} else if err != nil {
// Log the error and start over.
log.Printf("Watch(): %s", err)
// If the error is code 401 ("index
// out of date"), start from the
// current index. TODO: consider
// calling loadFullConfig, or we might
// potentially lose some updates?
if etcdErr, ok := err.(*etcd.EtcdError); ok && etcdErr.ErrorCode == 401 {
w.setIndex(etcdErr.Index)
}
}
}
}()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment