service/storage_proxy: drop unused operator<<

operator<<(ostream, paxos_response_handler) is not used anymore,
so let's drop it.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#18520
This commit is contained in:
Kefu Chai
2024-05-05 18:45:49 +08:00
committed by Avi Kivity
parent 21557cfaa6
commit ea791919cf

View File

@@ -2234,11 +2234,6 @@ struct fmt::formatter<service::paxos_response_handler> : fmt::formatter<string_v
namespace service {
std::ostream& operator<<(std::ostream& os, const paxos_response_handler& h) {
fmt::print(os, "{}", h);
return os;
}
// This function implements learning stage of Paxos protocol
future<> paxos_response_handler::learn_decision(lw_shared_ptr<paxos::proposal> decision, bool allow_hints) {
tracing::trace(tr_state, "learn_decision: committing {} with cl={}", *decision, _cl_for_learn);