From a5d779a8b22fc6035e3aac2bbf9f73a6dea32477 Mon Sep 17 00:00:00 2001 From: David Zhao Date: Fri, 28 Jan 2022 21:43:40 -0800 Subject: [PATCH] Increase test client timeout --- test/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/client/client.go b/test/client/client.go index 6ab69d4c5..cf37ce185 100644 --- a/test/client/client.go +++ b/test/client/client.go @@ -334,7 +334,7 @@ func (c *RTCClient) Run() error { } func (c *RTCClient) WaitUntilConnected() error { - ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) defer cancel() for { select {