()
| 173 | } |
| 174 | |
| 175 | func (c *ClusterChecker) sendSyncEvent() { |
| 176 | select { |
| 177 | case c.syncCh <- struct{}{}: |
| 178 | case <-c.ctx.Done(): |
| 179 | return |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | func (c *ClusterChecker) syncClusterToNodes(ctx context.Context) error { |
| 184 | clusterInfo, err := c.clusterStore.GetCluster(ctx, c.namespace, c.clusterName) |
no outgoing calls