From 2e9370ba11946451e9368d4d876e65e9861c56a9 Mon Sep 17 00:00:00 2001 From: Pierre Souchay Date: Tue, 2 Jul 2019 01:02:00 +0200 Subject: [PATCH] Bump timeout in TestManager_BasicLifecycle (#6030) --- agent/proxycfg/manager_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/proxycfg/manager_test.go b/agent/proxycfg/manager_test.go index 7a69bbadf..5fba10f34 100644 --- a/agent/proxycfg/manager_test.go +++ b/agent/proxycfg/manager_test.go @@ -215,7 +215,7 @@ func assertWatchChanRecvs(t *testing.T, ch <-chan *ConfigSnapshot, expect *Confi if expect == nil { require.False(t, ok, "watch chan should be closed") } - case <-time.After(50*time.Millisecond + coalesceTimeout): + case <-time.After(100*time.Millisecond + coalesceTimeout): t.Fatal("recv timeout") } }