From 186f034b16aea75ff09993a003a7212e35b46df3 Mon Sep 17 00:00:00 2001 From: Todd Gruben Date: Mon, 11 Feb 2019 14:35:50 -0600 Subject: [PATCH] missed commit --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index 22f9f390b..5a311918f 100644 --- a/server.go +++ b/server.go @@ -321,7 +321,7 @@ func NewServer(opts ...ServerOption) (*Server, error) { s.cluster.broadcaster = s s.cluster.maxWritesPerRequest = s.maxWritesPerRequest s.holder.broadcaster = s - s.holder.shardValidatorfn = func(index string, shard uint64) bool { + s.holder.shardValidatorFunc = func(index string, shard uint64) bool { return s.cluster.ownsShard(s.nodeID, index, shard) }