[pick_first] adjust threshold on e2e test to address flake (#34157)

pull/34163/head
Mark D. Roth 1 year ago committed by GitHub
parent 82b00c0fa3
commit b980f62ca6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/cpp/end2end/client_lb_end2end_test.cc

@ -859,7 +859,7 @@ TEST_F(PickFirstTest, BackOffInitialReconnect) {
(kInitialBackOffMs * grpc_test_slowdown_factor()) - 1);
// But not much more.
EXPECT_LE(waited.millis(),
(kInitialBackOffMs * grpc_test_slowdown_factor()) * 1.1);
(kInitialBackOffMs * grpc_test_slowdown_factor()) * 1.3);
}
TEST_F(PickFirstTest, BackOffMinReconnect) {

Loading…
Cancel
Save