Skip to content

Commit 2db215f

Browse files
vparfonovclaude
authored andcommitted
LOG-9424: Increase AtLeastOnce test timeout to 5 minutes
The AtLeastOnce delivery mode uses disk-backed buffers which can delay initial log delivery. The 3-minute poll timeout was too tight for slow CI nodes, causing flaky failures. Align with DefaultWaitForLogsTimeout (5 minutes) used by other e2e tests. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 94872e3 commit 2db215f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/e2e/collection/tuning/at_least_once_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ var _ = Describe("[tuning] deliveryMode AtLeastOnce", func() {
133133

134134
//wait for some logs from all streams to be received
135135
// Verify some logs from all streams to be received
136-
Expect(wait.PollUntilContextTimeout(context.TODO(), 5*time.Second, 3*time.Minute, true, func(context.Context) (done bool, err error) {
136+
Expect(wait.PollUntilContextTimeout(context.TODO(), 5*time.Second, 5*time.Minute, true, func(context.Context) (done bool, err error) {
137137
q, err := receiver.Query(utils.GetPtr(15 * time.Second))
138138
if err != nil {
139139
log.V(0).Error(err, "The error from querying the receiver")

0 commit comments

Comments
 (0)