forked from M-Labs/artiq
1
0
Fork 0

local coremgmt: return the whole config after read

This commit is contained in:
occheung 2024-08-28 17:43:21 +08:00
parent 47636ae973
commit b563533bc8
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,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(());
}