Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 27, 2025
1 parent 1209a62 commit 8cd228e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/core/end2end/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ grpc_core_end2end_test(name = "retry")

grpc_core_end2end_test(name = "retry_cancel_after_first_attempt_starts")

grpc_core_end2end_test(name = "retry_cancel_during_delay")
grpc_core_end2end_test(name = "retry_cancel_during_delay", shard_count = 10)

grpc_core_end2end_test(name = "retry_cancel_with_multiple_send_batches")

Expand Down
5 changes: 2 additions & 3 deletions test/core/end2end/end2end_test_suites.cc
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,8 @@ class SslProxyFixture : public CoreTestFixture {
grpc_server* s = grpc_server_create(server_args, nullptr);
std::string server_cert = testing::GetFileContents(SERVER_CERT_PATH);
std::string server_key = testing::GetFileContents(SERVER_KEY_PATH);
LOG(INFO) << GRPC_DUMP_ARGS(SERVER_CERT_PATH, SERVER_KEY_PATH, server_cert,
server_key);
grpc_ssl_pem_key_cert_pair pem_key_cert_pair = {server_key.c_str(),
server_cert.c_str()};
grpc_server_credentials* ssl_creds = grpc_ssl_server_credentials_create(
Expand Down Expand Up @@ -766,8 +768,6 @@ std::vector<CoreTestConfiguration> DefaultConfigs() {
[](const ChannelArgs& client_args, const ChannelArgs&) {
return std::make_unique<HttpProxyFilter>(client_args);
}},
#if 0
// TODO(ctiller): why is this not working??
CoreTestConfiguration{
"Chttp2SslProxy",
FEATURE_MASK_SUPPORTS_CLIENT_CHANNEL | FEATURE_MASK_IS_SECURE |
Expand All @@ -778,7 +778,6 @@ std::vector<CoreTestConfiguration> DefaultConfigs() {
[](const ChannelArgs& client_args, const ChannelArgs& server_args) {
return std::make_unique<SslProxyFixture>(client_args, server_args);
}},
#endif
CoreTestConfiguration{
"Chttp2InsecureCredentials",
FEATURE_MASK_SUPPORTS_CLIENT_CHANNEL |
Expand Down

0 comments on commit 8cd228e

Please sign in to comment.