mgmt: remove spurious config write warning

pull/177/head
Sebastien Bourdeauducq 2022-03-16 08:24:52 +08:00
parent 7502f3a765
commit 0530e596ba
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ async fn handle_connection(
}, },
Request::ConfigWrite => { Request::ConfigWrite => {
let key = read_key(stream).await?; let key = read_key(stream).await?;
warn!("write key: {}", key); debug!("write key: {}", key);
let len = read_i32(stream).await?; let len = read_i32(stream).await?;
let len = if len <= 0 { let len = if len <= 0 {
0 0