2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-27 04:08:27 +08:00

local coremgmt: return the whole config after read

This commit is contained in:
occheung 2024-08-28 17:43:21 +08:00
parent 455e2a8f9d
commit 644e24be34

View File

@ -333,7 +333,7 @@ mod remote_coremgmt {
buffer.extend(&value[..length as usize]);
if last {
Reply::ConfigData(&value[..length as usize]).write_to(stream)?;
Reply::ConfigData(&buffer).write_to(stream)?;
return Ok(());
}