[#1451] placement: Return copy of slice from container nodes cache
Some checks failed
Tests and linters / Run gofumpt (pull_request) Successful in 1m18s
DCO action / DCO (pull_request) Successful in 1m29s
Tests and linters / Staticcheck (pull_request) Failing after 2m7s
Vulncheck / Vulncheck (pull_request) Successful in 2m17s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m30s
Tests and linters / Lint (pull_request) Failing after 2m29s
Build / Build Components (pull_request) Successful in 2m34s
Tests and linters / gopls check (pull_request) Successful in 2m56s
Tests and linters / Tests (pull_request) Successful in 4m24s
Tests and linters / Tests with -race (pull_request) Successful in 6m28s
Some checks failed
Tests and linters / Run gofumpt (pull_request) Successful in 1m18s
DCO action / DCO (pull_request) Successful in 1m29s
Tests and linters / Staticcheck (pull_request) Failing after 2m7s
Vulncheck / Vulncheck (pull_request) Successful in 2m17s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m30s
Tests and linters / Lint (pull_request) Failing after 2m29s
Build / Build Components (pull_request) Successful in 2m34s
Tests and linters / gopls check (pull_request) Successful in 2m56s
Tests and linters / Tests (pull_request) Successful in 4m24s
Tests and linters / Tests with -race (pull_request) Successful in 6m28s
Nodes from cache could be changed by traverser, if no objectID specified. So it is required to return copy of cache's slice. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
5bd3b663a9
commit
37645a18b4
1 changed files with 12 additions and 1 deletions
|
@ -44,7 +44,7 @@ func (c *ContainerNodesCache) ContainerNodes(nm *netmapSDK.NetMap, cnr cid.ID, p
|
|||
raw, ok := c.containerCache.Get(cnr)
|
||||
c.mtx.Unlock()
|
||||
if ok {
|
||||
return raw, nil
|
||||
return c.cloneResult(raw), nil
|
||||
}
|
||||
} else {
|
||||
c.lastEpoch = nm.Epoch()
|
||||
|
@ -67,3 +67,14 @@ func (c *ContainerNodesCache) ContainerNodes(nm *netmapSDK.NetMap, cnr cid.ID, p
|
|||
c.mtx.Unlock()
|
||||
return cn, nil
|
||||
}
|
||||
|
||||
func (c *ContainerNodesCache) cloneResult(nodes [][]netmapSDK.NodeInfo) [][]netmapSDK.NodeInfo {
|
||||
result := make([][]netmapSDK.NodeInfo, len(nodes))
|
||||
for repIdx := range nodes {
|
||||
result[repIdx] = make([]netmapSDK.NodeInfo, 0, len(nodes[repIdx]))
|
||||
for nodeIdx := range nodes[repIdx] {
|
||||
result[repIdx] = append(result[repIdx], nodes[repIdx][nodeIdx])
|
||||
}
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue