Browse Source

Bump timeout in TestManager_BasicLifecycle (#6030)

pull/6058/head
Pierre Souchay 5 years ago committed by Freddy
parent
commit
fd9237a1ff
  1. 2
      agent/proxycfg/manager_test.go

2
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")
}
}

Loading…
Cancel
Save