mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-09 14:41:02 +00:00
Merge branch 'master' into 1805-rows-call-format
This commit is contained in:
commit
b898460a18
1 changed files with 2 additions and 2 deletions
|
|
@ -609,8 +609,8 @@ func (c *cluster) addNodeBasicSorted(node *Node) bool {
|
|||
// Nodes returns a copy of the slice of nodes in the cluster. Safe for
|
||||
// concurrent use, result may be modified.
|
||||
func (c *cluster) Nodes() []*Node {
|
||||
c.mu.Lock()
|
||||
defer c.mu.Unlock()
|
||||
c.mu.RLock()
|
||||
defer c.mu.RUnlock()
|
||||
ret := make([]*Node, len(c.nodes))
|
||||
copy(ret, c.nodes)
|
||||
return ret
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue