Fixed formattting issues in etcd.go

This commit is contained in:
Abhishek Shah 2015-02-10 12:03:40 -08:00
parent f136886dde
commit febf8c9b2c

View File

@ -61,7 +61,7 @@ func (s *sourceEtcd) run() {
boundPods := api.BoundPods{}
err := s.helper.ExtractObj(s.key, &boundPods, false)
if err != nil {
if (tools.IsEtcdNotFound(err)) {
if tools.IsEtcdNotFound(err) {
glog.V(4).Infof("etcd failed to retrieve the value for the key %q. Error: %v", s.key, err)
return
}