Skip to content

Commit

Permalink
fix: Increase flush timeout in TestHTTPTransport (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyo committed Jul 5, 2023
1 parent 2563bd8 commit 1b2ac13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transport_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ func TestHTTPTransport(t *testing.T) {
transportMustFlush := func(t *testing.T, id string) {
t.Helper()

ok := transport.Flush(100 * time.Millisecond)
ok := transport.Flush(500 * time.Millisecond)
if !ok {
t.Fatalf("[CLIENT] {%.4s} Flush() timed out", id)
}
Expand Down

0 comments on commit 1b2ac13

Please sign in to comment.