Skip to content
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