We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8422be6 commit 835d2daCopy full SHA for 835d2da
1 file changed
lib/instances/exec_test.go
@@ -139,8 +139,9 @@ func TestExecConcurrent(t *testing.T) {
139
manager.DeleteInstance(ctx, inst.Id)
140
})
141
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)
+ // This test exercises concurrent exec behavior, not boot-speed budgets.
+ // Give the guest a little more headroom on busy Linux CI runners.
144
+ err = waitForExecAgent(ctx, manager, inst.Id, 30*time.Second)
145
require.NoError(t, err, "exec-agent should be ready")
146
147
// Verify exec-agent works with a simple command first
0 commit comments