From 3f4f263c0542ce398db54f79cb2ae3fa6ed060cc Mon Sep 17 00:00:00 2001 From: Pavel Sviderski Date: Mon, 3 Mar 2025 12:21:22 +1000 Subject: [PATCH] test: increase test cluster wait timeout 5->30 seconds --- 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 4963e542..9072bfe8 100644 --- a/internal/ucind/cluster.go +++ b/internal/ucind/cluster.go @@ -89,7 +89,7 @@ func (p *Provisioner) initCluster(ctx context.Context, machines []Machine) error // Init a new cluster on the first machine. initMachine := machines[0] - if err := p.WaitMachineReady(ctx, initMachine, 5*time.Second); err != nil { + if err := p.WaitMachineReady(ctx, initMachine, 30*time.Second); err != nil { return fmt.Errorf("wait for machine %q to be ready: %w", initMachine.Name, err) }