cargo fmt

This commit is contained in:
occheung 2024-08-20 16:49:10 +08:00
parent b4cc072e8e
commit 844c083ee4
1 changed files with 12 additions and 4 deletions

View File

@ -153,7 +153,10 @@ mod remote_coremgmt {
aux_mutex,
linkno,
routing_table,
&Packet::CoreMgmtGetLogRequest { destination, clear: false },
&Packet::CoreMgmtGetLogRequest {
destination,
clear: false,
},
timer,
)
.await?
@ -228,12 +231,17 @@ mod remote_coremgmt {
aux_mutex,
linkno,
routing_table,
&Packet::CoreMgmtGetLogRequest { destination, clear: true },
&Packet::CoreMgmtGetLogRequest {
destination,
clear: true,
},
timer,
).await {
)
.await
{
Ok(Packet::CoreMgmtGetLogReply { last, length, data }) => {
write_chunk(stream, &data[..length as usize]).await?;
},
}
_ => return Err(drtio::Error::UnexpectedReply.into()),
}