- update: health check status output to health log

This commit is contained in:
2024-12-17 20:03:12 -05:00
parent ee29fef634
commit aaa7143b11
2 changed files with 4 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ use tracing::{debug, error, info, warn};
use utils::service_discovery;
pub(crate) async fn handle_accept_req(stream: &mut TcpStream, packet: Packet) -> Result<(), Box<dyn Error + Send + Sync>> {
let request = CliAcceptReq::decode(packet.payload.as_slice());
// let request = CliAcceptReq::decode(packet.payload.as_slice());
// We need to do reply to this packet
let data = SrvAcceptReply { result: srv_accept_reply::Result::Accepted, rand_value: 0 };