From dde23b55497be2f07071ff428afe88e31b1ff73a Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Tue, 4 Nov 2025 12:40:15 +1000 Subject: [PATCH] chore: increase timeout 5->30s for waiting for machines to be ready in ucind cluster --- internal/ucind/cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ucind/cluster.go b/internal/ucind/cluster.go index 087795be..efc5e99a 100644 --- a/internal/ucind/cluster.go +++ b/internal/ucind/cluster.go @@ -142,7 +142,7 @@ func (p *Provisioner) initCluster(ctx context.Context, machines []Machine) error // Join the rest of the machines to the cluster. for _, m := range machines[1:] { - if err = WaitMachineReady(ctx, m, 5*time.Second); err != nil { + if err = WaitMachineReady(ctx, m, 30*time.Second); err != nil { return fmt.Errorf("wait for machine %q to be ready: %w", m.Name, err) }