store: use Rlock when GET
This commit is contained in:
@ -119,8 +119,8 @@ func (s *store) Index() uint64 {
|
|||||||
func (s *store) Get(nodePath string, recursive, sorted bool) (*Event, error) {
|
func (s *store) Get(nodePath string, recursive, sorted bool) (*Event, error) {
|
||||||
var err *etcdErr.Error
|
var err *etcdErr.Error
|
||||||
|
|
||||||
s.worldLock.Lock()
|
s.worldLock.RLock()
|
||||||
defer s.worldLock.Unlock()
|
defer s.worldLock.RUnlock()
|
||||||
|
|
||||||
defer func() {
|
defer func() {
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
Reference in New Issue
Block a user