pull/35312/head
Craig Tiller 1 year ago
parent 7bf70f6bf0
commit ae0bf81f8b
  1. 7
      src/core/lib/surface/call.cc

@ -3705,7 +3705,6 @@ ServerPromiseBasedCall::MakeTopOfServerCallPromise(
return Seq(server_to_client_messages_->AwaitClosed(), return Seq(server_to_client_messages_->AwaitClosed(),
send_trailing_metadata_.Wait()); send_trailing_metadata_.Wait());
} }
#endif
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// CallSpine based Server Call // CallSpine based Server Call
@ -4072,6 +4071,12 @@ RefCountedPtr<CallSpineInterface> MakeServerCall(Server* server,
auto* call = new (alloc.second) ServerCallSpine(server, channel, alloc.first); auto* call = new (alloc.second) ServerCallSpine(server, channel, alloc.first);
return RefCountedPtr<ServerCallSpine>(call); return RefCountedPtr<ServerCallSpine>(call);
} }
#else
RefCountedPtr<CallSpineInterface> MakeServerCall(Server* server,
Channel* channel) {
Crash("not implemented");
}
#endif
} // namespace grpc_core } // namespace grpc_core

Loading…
Cancel
Save