ui improvement
This commit is contained in:
@@ -36,7 +36,7 @@ impl RawUdpProtocolHandler {
|
||||
}
|
||||
|
||||
trace!(
|
||||
"receiving message of length {} from {}",
|
||||
"receiving UDP message of length {} from {}",
|
||||
data.len(),
|
||||
remote_addr
|
||||
);
|
||||
@@ -67,7 +67,7 @@ impl RawUdpProtocolHandler {
|
||||
}
|
||||
|
||||
trace!(
|
||||
"sending message of length {} to {}",
|
||||
"sending UDP message of length {} to {}",
|
||||
data.len(),
|
||||
socket_addr
|
||||
);
|
||||
|
@@ -89,13 +89,13 @@ macro_rules! map_error_panic {
|
||||
};
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
#[derive(Debug, Clone)]
|
||||
pub enum Destination {
|
||||
Direct(NodeRef),
|
||||
PrivateRoute(PrivateRoute),
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
#[derive(Debug, Clone)]
|
||||
pub enum RespondTo {
|
||||
None,
|
||||
Sender,
|
||||
@@ -320,6 +320,7 @@ impl RPCProcessor {
|
||||
|
||||
if nr.node_id() != node_id {
|
||||
// found a close node, but not exact within our configured resolve_node timeout
|
||||
error!("XXX: Timeout");
|
||||
return Err(RPCError::Timeout);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user