Skip to content

Commit

Permalink
[grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging GPR_AS…
Browse files Browse the repository at this point in the history
…SERT
  • Loading branch information
tanvi-jagtap committed Apr 28, 2024
1 parent 282cd8b commit 26cbdfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/lib/transport/call_filters.cc
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ void CallFilters::PushServerTrailingMetadata(ServerMetadataHandle md) {
GetContext<Activity>()->DebugTag().c_str(), this,
md->DebugString().c_str(), DebugString().c_str());
}
CHECK_NE(md, nullptr);
CHECK(md != nullptr);
if (server_trailing_metadata_ != nullptr) return;
server_trailing_metadata_ = std::move(md);
client_initial_metadata_state_.CloseWithError();
Expand Down

0 comments on commit 26cbdfa

Please sign in to comment.