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 May 6, 2024
1 parent a8e7b4e commit 9700707
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/lib/surface/call.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ class Call : public CppImplOf<Call, grpc_call>,
arena_(arena),
send_deadline_(send_deadline),
is_client_(is_client) {
CHECK_NE(arena_, nullptr);
CHECK(channel_ != nullptr);
DCHECK_NE(arena_, nullptr);
DCHECK(channel_ != nullptr);
}
~Call() override = default;

Expand All @@ -173,7 +173,7 @@ class Call : public CppImplOf<Call, grpc_call>,
ParentCall* GetOrCreateParentCall();
ParentCall* parent_call();
Channel* channel() const {
CHECK(channel_ != nullptr);
DCHECK(channel_ != nullptr);
return channel_.get();
}

Expand Down

0 comments on commit 9700707

Please sign in to comment.