Increase test client timeout

This commit is contained in:
David Zhao
2022-01-28 21:43:40 -08:00
parent 6af6eefb8c
commit a5d779a8b2
+1 -1
View File
@@ -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 {