fix(cluster): improve error handling on failed machine subscription in cluster store

This commit is contained in:
Pasha Sviderski
2026-06-23 20:54:25 +10:00
parent b08cee03e3
commit 35191c00e0
5 changed files with 48 additions and 66 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ func (r *ClusterResolver) Run(ctx context.Context) error {
select {
case _, ok := <-changes:
if !ok {
return fmt.Errorf("containers subscription failed")
return fmt.Errorf("subscription to container changes in cluster store failed")
}
r.log.Debug("Cluster containers changed, updating DNS records.")