Skip to content
Closed
Changes from all commits
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
3 changes: 2 additions & 1 deletion test/integration/protocol_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,8 @@ TEST_P(DownstreamProtocolIntegrationTest, RetryHostPredicateFilter) {
1024);

// Note how we're expecting each upstream request to hit the same upstream.
auto upstream_idx = waitForNextUpstreamRequest({0, 1});
// We waited default timeout serveral times. We cannot use up all the quota on the first upstream.
auto upstream_idx = waitForNextUpstreamRequest({0, 1}, TestUtility::DefaultTimeout / 10);
ASSERT_TRUE(upstream_idx.has_value());
upstream_request_->encodeHeaders(Http::TestResponseHeaderMapImpl{{":status", "503"}}, false);

Expand Down