assemblybuffer work

This commit is contained in:
John Smith
2023-06-21 23:35:33 -04:00
parent 9cce36e649
commit 3d3582e688
5 changed files with 235 additions and 2 deletions

View File

@@ -878,6 +878,8 @@ impl RPCProcessor {
) {
// Record for node if this was not sent via a route
if safety_route.is_none() && remote_private_route.is_none() {
log_rpc!(debug "RPC Question Lost: {:?}", node_ref);
node_ref.stats_question_lost();
// Also clear the last_connections for the entry so we make a new connection next time

View File

@@ -152,7 +152,7 @@ where
.into_timeout_or();
Ok(res
.on_timeout(|| {
log_rpc!(debug "op wait timed out: {}", handle.op_id);
// log_rpc!(debug "op wait timed out: {}", handle.op_id);
// debug_print_backtrace();
self.cancel_op_waiter(handle.op_id);
})