[fuzzing] Increase timeout to accommodate delayed callbacks (#33267)

Put enough internal delays into this test and it hits deadline
exceeded... extend the deadline to cover that.

(this is likely to become a common edit over the next few weeks...)
pull/33272/head
Craig Tiller 2 years ago committed by GitHub
parent acbac3deee
commit e0ba7b720a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      test/core/end2end/tests/compressed_payload.cc

@ -123,7 +123,8 @@ class TestConfigurator {
std::initializer_list<std::pair<absl::string_view, absl::string_view>>
client_init_metadata) {
Init();
auto c = test_.NewClientCall("/foo").Timeout(Duration::Seconds(5)).Create();
auto c =
test_.NewClientCall("/foo").Timeout(Duration::Seconds(30)).Create();
CoreEnd2endTest::IncomingStatusOnClient server_status;
CoreEnd2endTest::IncomingMetadata server_initial_metadata;
c.NewBatch(1)

Loading…
Cancel
Save