From 4a1d15ec9dd235d39628488947ec1d337f23aca2 Mon Sep 17 00:00:00 2001 From: Todd Gruben Date: Thu, 26 Apr 2018 11:43:39 -0500 Subject: [PATCH] missed a file on last commit --- cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster.go b/cluster.go index c7285d17a..b02bd50d2 100644 --- a/cluster.go +++ b/cluster.go @@ -337,7 +337,7 @@ func (c *Cluster) SetCoordinator(n *Node) error { func (c *Cluster) UpdateCoordinator(n *Node) bool { c.mu.Lock() defer c.mu.Unlock() - _ = c.updateCoordinator(n) + return c.updateCoordinator(n) } func (c *Cluster) updateCoordinator(n *Node) bool {