Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/praefect/nodes/manager.go')
-rw-r--r--internal/praefect/nodes/manager.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/praefect/nodes/manager.go b/internal/praefect/nodes/manager.go
index f7578cfbf..e57abeb0b 100644
--- a/internal/praefect/nodes/manager.go
+++ b/internal/praefect/nodes/manager.go
@@ -229,6 +229,9 @@ func (n *Mgr) Stop() {
func (n *Mgr) checkShards() {
for _, strategy := range n.strategies {
ctx := context.Background()
+
+ //nolint:errcheck // We don't care for this error. The nodes manager is only
+ // used for the deprecated SQL elector anyway.
strategy.checkNodes(ctx)
}
}