Skip to content

Commit 835d2da

Browse files
committed
Stabilize exec concurrency CI timeout
1 parent 8422be6 commit 835d2da

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

lib/instances/exec_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,9 @@ func TestExecConcurrent(t *testing.T) {
139139
manager.DeleteInstance(ctx, inst.Id)
140140
})
141141

142-
// Wait for exec-agent to be ready (retry here is OK - we're just waiting for startup)
143-
err = waitForExecAgent(ctx, manager, inst.Id, 15*time.Second)
142+
// This test exercises concurrent exec behavior, not boot-speed budgets.
143+
// Give the guest a little more headroom on busy Linux CI runners.
144+
err = waitForExecAgent(ctx, manager, inst.Id, 30*time.Second)
144145
require.NoError(t, err, "exec-agent should be ready")
145146

146147
// Verify exec-agent works with a simple command first

0 commit comments

Comments
 (0)