Skip to content

Commit

Permalink
kafka: make is_finished_parsing private
Browse files Browse the repository at this point in the history
Signed-off-by: Noah Watkins <[email protected]>
  • Loading branch information
dotnwat committed Jan 10, 2023
1 parent 38bee7b commit ba91761
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/v/kafka/server/connection_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,12 @@ class connection_context final

ss::future<> process();
ss::future<> process_one_request();
bool is_finished_parsing() const;
ss::net::inet_address client_host() const { return _client_addr; }
uint16_t client_port() const { return conn ? conn->addr.port() : 0; }

private:
bool is_finished_parsing() const;

// Reserve units from memory from the memory semaphore in proportion
// to the number of bytes the request procesisng is expected to
// take.
Expand Down

0 comments on commit ba91761

Please sign in to comment.