Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix http2 dial timeout #570

Merged
merged 8 commits into from
Jan 11, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update test
  • Loading branch information
kslr committed Jan 1, 2021
commit 7b98d269a7eead2ff78150868c8a629b713ccd5b
2 changes: 1 addition & 1 deletion testing/scenarios/tls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ func TestHTTP2(t *testing.T) {

var errg errgroup.Group
for i := 0; i < 10; i++ {
errg.Go(testTCPConn(clientPort, 1024*1024, time.Second*40))
errg.Go(testTCPConn(clientPort, 5120*1024, time.Second*40))
}
if err := errg.Wait(); err != nil {
t.Error(err)
Expand Down