1
0
Fork 0

Remove misused Fatal*

This commit is contained in:
Emile Vauge 2016-08-19 10:36:54 +02:00
parent fc19ab2868
commit 11297b38c5
No known key found for this signature in database
GPG key ID: D808B4C167352E59
8 changed files with 12 additions and 12 deletions

View file

@ -322,7 +322,7 @@ func (provider *ConsulCatalog) Provide(configurationChan chan<- types.ConfigMess
}
err := backoff.RetryNotify(worker, backoff.NewExponentialBackOff(), notify)
if err != nil {
log.Fatalf("Cannot connect to consul server %+v", err)
log.Errorf("Cannot connect to consul server %+v", err)
}
})