From aeb22d042bec29b7d9b06979c75824df8f094e43 Mon Sep 17 00:00:00 2001 From: Ivan Ka <5395690+ivankatliarchuk@users.noreply.github.com> Date: Wed, 25 Mar 2026 23:12:15 +0000 Subject: [PATCH] fix(webhook): increase test client timeouts to prevent flaky tests (#6310) Signed-off-by: ivan katliarchuk --- provider/webhook/webhook_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/provider/webhook/webhook_test.go b/provider/webhook/webhook_test.go index 9ee2e36ff..546de9b8b 100644 --- a/provider/webhook/webhook_test.go +++ b/provider/webhook/webhook_test.go @@ -35,8 +35,8 @@ import ( ) const ( - testReadTimeout = 5 * time.Millisecond - testWriteTimeout = 10 * time.Millisecond + testReadTimeout = 5 * time.Second + testWriteTimeout = 5 * time.Second ) func TestNewWebhookProvider_InvalidURL(t *testing.T) {