test: suppress noisy output in reload_test by redirecting child process stdout/stderr to null

This commit is contained in:
2026-02-03 21:22:56 +08:00
parent f316541302
commit 7b6a807f4f

View File

@@ -110,6 +110,8 @@ services:
.arg("--")
.arg("-f")
.arg(&config_path)
.stdout(std::process::Stdio::null())
.stderr(std::process::Stdio::null())
.spawn()?;
// Give it time to start