From ecfa6fb373d0ff0235f3c78d9e069d0b9465e6f4 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 8 Sep 2025 22:40:41 +0200 Subject: [PATCH] inlet/flow: wait a bit longer to get back flows with UDP There is no harm in waiting more as when the test works, the wait is minimal. --- inlet/flow/input/udp/root_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inlet/flow/input/udp/root_test.go b/inlet/flow/input/udp/root_test.go index ae61e685..2e0ada9a 100644 --- a/inlet/flow/input/udp/root_test.go +++ b/inlet/flow/input/udp/root_test.go @@ -74,7 +74,7 @@ func TestUDPInput(t *testing.T) { // Get it back select { - case <-time.After(20 * time.Millisecond): + case <-time.After(time.Second): t.Fatal("no decoded flows received") case <-done: }