From d35e2a92b11062f96eb630fcb202a1a3fa1c6bea Mon Sep 17 00:00:00 2001 From: Cory LaNou Date: Sat, 21 Feb 2015 19:14:00 -0700 Subject: [PATCH] locking is now done in process messages --- server.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/server.go b/server.go index 84e1c010408..83316304b2e 100644 --- a/server.go +++ b/server.go @@ -1522,8 +1522,6 @@ func (s *Server) applyDropSeries(m *messaging.Message) error { var c dropSeriesCommand mustUnmarshalJSON(m.Data, &c) - s.mu.Lock() - defer s.mu.Unlock() database := s.databases[c.Database] if database == nil { return ErrDatabaseNotFound