# HG changeset patch # User Sergey Kandaurov # Date 1461082829 -10800 # Node ID 9045591d4304e60a7d99f203efebdabc4d76480b # Parent adf5671391acded49fd9b2194a342a63e1d59b98 Tests: fixed h2_limit_req.t test timeout. Delay sending request body, not after that, as otherwise it can timeout waiting for WINDOW_UPDATE. diff --git a/h2_limit_req.t b/h2_limit_req.t --- a/h2_limit_req.t +++ b/h2_limit_req.t @@ -86,8 +86,8 @@ local $TODO = 'not yet' unless $t->has_v $sess = new_session(); $sid = new_stream($sess, { path => '/proxy_limit_req/', body_more => 1 }); +select undef, undef, undef, 1.1; h2_body($sess, 'TEST'); -select undef, undef, undef, 1.1; $frames = h2_read($sess, all => [{ sid => $sid, fin => 1 }]); ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;