mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #5441 from mqliang/Rlock-GET
store: use Rlock when GET
This commit is contained in:
commit
9ea1705563
@ -119,8 +119,8 @@ func (s *store) Index() uint64 {
|
||||
func (s *store) Get(nodePath string, recursive, sorted bool) (*Event, error) {
|
||||
var err *etcdErr.Error
|
||||
|
||||
s.worldLock.Lock()
|
||||
defer s.worldLock.Unlock()
|
||||
s.worldLock.RLock()
|
||||
defer s.worldLock.RUnlock()
|
||||
|
||||
defer func() {
|
||||
if err == nil {
|
||||
|
Loading…
x
Reference in New Issue
Block a user