From 5ed84009b33642ca1f1eac8b99001842d93e2494 Mon Sep 17 00:00:00 2001 From: David Calavera Date: Fri, 31 Jul 2015 09:48:55 -0700 Subject: [PATCH] Remove read index that causes dead lock. Let the iterator to lock the index when it needs it. Signed-off-by: David Calavera --- pkg/truncindex/truncindex.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/truncindex/truncindex.go b/pkg/truncindex/truncindex.go index a93fe1d6e4..dba52d3626 100644 --- a/pkg/truncindex/truncindex.go +++ b/pkg/truncindex/truncindex.go @@ -121,8 +121,6 @@ func (idx *TruncIndex) Get(s string) (string, error) { // Iterate iterates over all stored IDs, and passes each of them to the given handler. func (idx *TruncIndex) Iterate(handler func(id string)) { - idx.RLock() - defer idx.RUnlock() idx.trie.Visit(func(prefix patricia.Prefix, item patricia.Item) error { handler(string(prefix)) return nil