Skip to content

Commit

Permalink
fix: increase ctx timeout in cel unit-tests (#39713)
Browse files Browse the repository at this point in the history
(cherry picked from commit f3bd8f2)
  • Loading branch information
pkoutsovasilis authored and mergify[bot] committed May 27, 2024
1 parent f0d8bda commit 05fe6c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/filebeat/input/cel/input_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1434,7 +1434,7 @@ func TestInput(t *testing.T) {
t.Fatalf("unexpected error running test: %v", err)
}

ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()

v2Ctx := v2.Context{
Expand Down

0 comments on commit 05fe6c6

Please sign in to comment.