From c1d338550f897aaec6f4761071f15b4336af491c Mon Sep 17 00:00:00 2001 From: James Phillips Date: Thu, 29 Oct 2015 09:26:24 -0700 Subject: [PATCH] Changes batch update failure to a WARN since it's nbd. --- consul/coordinate_endpoint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul/coordinate_endpoint.go b/consul/coordinate_endpoint.go index db156df5db..e5774764e6 100644 --- a/consul/coordinate_endpoint.go +++ b/consul/coordinate_endpoint.go @@ -41,7 +41,7 @@ func (c *Coordinate) batchUpdate() { select { case <-time.After(c.srv.config.CoordinateUpdatePeriod): if err := c.batchApplyUpdates(); err != nil { - c.srv.logger.Printf("[ERR] consul.coordinate: Batch update failed: %v", err) + c.srv.logger.Printf("[WARN] consul.coordinate: Batch update failed: %v", err) } case <-c.srv.shutdownCh: return