We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7069770 commit e59dcd5Copy full SHA for e59dcd5
test/cpp/end2end/xds/xds_end2end_test.cc
@@ -913,6 +913,8 @@ class XdsEnd2endTest : public ::testing::TestWithParam<TestType> {
913
const char* xds_authority = "",
914
grpc_channel_args* xds_channel_args = nullptr) {
915
ChannelArguments args;
916
+ // TODO(roth): Remove this once we enable retries by default internally.
917
+ args.SetInt(GRPC_ARG_ENABLE_RETRIES, 1);
918
if (failover_timeout > 0) {
919
args.SetInt(GRPC_ARG_PRIORITY_FAILOVER_TIMEOUT_MS, failover_timeout);
920
}
0 commit comments