[#2162] services/tree: Close connection after the syncronization

There was a goroutine leak here.

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
fyrchik/simplify-services
Evgenii Stratonikov 2022-12-16 09:54:00 +03:00 committed by Anton Nikiforov
parent e1c3bdbfa6
commit 9e0decd12d
2 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,7 @@ Changelog for NeoFS Node
- Prioritize internal addresses for clients (#2156)
- Force object removal via control service (#2145)
- Synchronizing a tree now longer reports an error for a single-node container (#2154)
- Prevent leaking goroutines in the tree service (#2162)
### Removed
- `-g` option from `neofs-cli control ...` and `neofs-cli container create` commands (#2089)

View File

@ -137,6 +137,7 @@ func (s *Service) synchronizeTree(ctx context.Context, d pilorama.CIDDescriptor,
// Failed to connect, try the next address.
return false
}
defer cc.Close()
treeClient := NewTreeServiceClient(cc)
for {