Merge pull request #22329 from donnadionne/win

FIxing the settings_timeout_test flake by reducing poll deadline value
pull/22475/head
donnadionne 5 years ago committed by GitHub
commit b3e995160a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/core/transport/chttp2/settings_timeout_test.cc

@ -196,7 +196,7 @@ class Client {
GRPC_LOG_IF_ERROR(
"grpc_pollset_work",
grpc_pollset_work(pollset_, &worker,
grpc_core::ExecCtx::Get()->Now() + 1000));
grpc_core::ExecCtx::Get()->Now() + 100));
// Flushes any work scheduled before or during polling.
grpc_core::ExecCtx::Get()->Flush();
gpr_mu_unlock(mu_);

Loading…
Cancel
Save