pull/36509/head
Craig Tiller 10 months ago
parent 41ce951214
commit 36e826c48c
  1. 4
      src/core/ext/transport/chaotic_good/server_transport.cc
  2. 2
      src/core/lib/surface/call.cc

@ -376,8 +376,8 @@ ChaoticGoodServerTransport::ChaoticGoodServerTransport(
void ChaoticGoodServerTransport::SetCallDestination(
RefCountedPtr<UnstartedCallDestination> call_destination) {
CHECK_EQ(call_destination_, nullptr);
CHECK_NE(call_destination, nullptr);
CHECK(call_destination_ == nullptr);
CHECK(call_destination != nullptr);
call_destination_ = call_destination;
got_acceptor_.Set();
}

@ -3218,7 +3218,7 @@ class ServerCall final : public Call, public DualRefCounted<ServerCall> {
return call_handler_.legacy_context()[elem].value;
}
void SetCompletionQueue(grpc_completion_queue* cq) override {
void SetCompletionQueue(grpc_completion_queue*) override {
Crash("unimplemented");
}

Loading…
Cancel
Save