Skip to content

Automated fix for refs/heads/test_744758684 #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: test_744758684
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/config/load_config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ std::string LoadConfig(const absl::Flag<std::vector<std::string>>& flag,
if (override.has_value()) return *override;
auto from_flag = absl::GetFlag(flag);
if (!from_flag.empty()) return absl::StrJoin(from_flag, ",");
//return LoadConfigFromEnv(environment_variable, default_value);
// return LoadConfigFromEnv(environment_variable, default_value);
return default_value;
}

Expand Down
4 changes: 2 additions & 2 deletions test/core/transport/chaotic_good/chaotic_good_server_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class ChaoticGoodServerTest : public ::testing::Test {
};

TEST_F(ChaoticGoodServerTest, Connect) {
if (!grpc_core::IsChaoticGoodFramingLayerEnabled()) {
if (!IsChaoticGoodFramingLayerEnabled()) {
GTEST_SKIP() << "Chaotic Good framing layer is not enabled";
}
GRPC_CLOSURE_INIT(&on_connecting_finished_, OnConnectingFinished, this,
Expand All @@ -133,7 +133,7 @@ TEST_F(ChaoticGoodServerTest, Connect) {
}

TEST_F(ChaoticGoodServerTest, ConnectAndShutdown) {
if (!grpc_core::IsChaoticGoodFramingLayerEnabled()) {
if (!IsChaoticGoodFramingLayerEnabled()) {
GTEST_SKIP() << "Chaotic Good framing layer is not enabled";
}
Notification connect_finished;
Expand Down