Add missing read lock in getNodes
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 8 Sep 2016 13:51:32 +0000 (16:51 +0300)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 8 Sep 2016 13:51:32 +0000 (16:51 +0300)
hugolib/hugo_sites.go
hugolib/node.go

index 36b797e7ef1fdc40975e00746ee2755ce97c9180..c0e077bd16b24d8e9c451871d7b6aef14e9b97e2 100644 (file)
@@ -42,7 +42,7 @@ type HugoSites struct {
 
        // Maps internalID to a set of nodes.
        nodeMap   map[string]Nodes
-       nodeMapMu sync.Mutex
+       nodeMapMu sync.RWMutex
 }
 
 // NewHugoSites creates a new collection of sites given the input sites, building
@@ -108,9 +108,11 @@ func (h *HugoSites) addNode(nodeID string, node *Node) {
 }
 
 func (h *HugoSites) getNodes(nodeID string) Nodes {
-       // At this point it is read only, so no need to lock.
        if nodeID != "" {
-               if nodes, ok := h.nodeMap[nodeID]; ok {
+               h.nodeMapMu.RLock()
+               nodes, ok := h.nodeMap[nodeID]
+               h.nodeMapMu.RUnlock()
+               if ok {
                        return nodes
                }
        }
index 3b3d403948589f0b856034a20d9641a1bad3b145..566fd47993e334c3565f5f64dbe51b067ace59eb 100644 (file)
@@ -288,7 +288,6 @@ func (n *Node) IsTranslated() bool {
 func (n *Node) initTranslations() {
        n.translationsInit.Do(func() {
                n.translations = n.Site.owner.getNodes(n.nodeID)
-               //sort.Sort(n.translations)
        })
 }