[flake] Reduce test size for too_many_pings_test (#32284)

It was timing out in some sanitizer builds, likely because we've got
more debug code in the path now.
pull/32240/head
Craig Tiller 2 years ago committed by GitHub
parent c608379c70
commit 8e49dff4a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/core/transport/chttp2/too_many_pings_test.cc

@ -197,7 +197,7 @@ TEST(TooManyPings, TestLotsOfServerCancelledRpcsDoesntGiveTooManyPings) {
nullptr /* channel args */);
grpc_channel_credentials_release(creds);
std::map<grpc_status_code, int> statuses_and_counts;
const int kNumTotalRpcs = 1e5;
const int kNumTotalRpcs = 100;
// perform an RPC
gpr_log(GPR_INFO,
"Performing %d total RPCs and expecting them all to receive status "

Loading…
Cancel
Save