From 538b50c4123298b825edcdf6262572e38684f4a9 Mon Sep 17 00:00:00 2001 From: occheung Date: Fri, 23 Aug 2024 13:10:43 +0800 Subject: [PATCH] mgmt: fix config reply to host --- src/runtime/src/mgmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/src/mgmt.rs b/src/runtime/src/mgmt.rs index b7323e3..5ed5dea 100644 --- a/src/runtime/src/mgmt.rs +++ b/src/runtime/src/mgmt.rs @@ -356,7 +356,7 @@ mod remote_coremgmt { if last { write_i8(stream, Reply::ConfigData as i8).await?; - write_chunk(stream, &value).await?; + write_chunk(stream, &buffer).await?; return Ok(()); }