Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
yashykt committed Nov 12, 2024
1 parent 7ee0882 commit 75ce110
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,20 @@ class ChaoticGoodServerListener final : public Server::ListenerInterface {
int32_t data_alignment_;
};

void Start(Server*, const std::vector<grpc_pollset*>*) override {
StartListening().IgnoreError();
};
void Start() override { StartListening().IgnoreError(); };

channelz::ListenSocketNode* channelz_listen_socket_node() const override {
return nullptr;
}

void SetServerListenerState(RefCountedPtr<Server::ListenerState>) override {}

const grpc_resolved_address* resolved_address() const override {
// chaotic good doesn't use the new ListenerState interface yet.
Crash("Unimplemented");
return nullptr;
}

void SetOnDestroyDone(grpc_closure* closure) override {
MutexLock lock(&mu_);
on_destroy_done_ = closure;
Expand Down

0 comments on commit 75ce110

Please sign in to comment.