benchmark: suppress server probe noise in output
CI / build-and-test (push) Successful in 3m9s
CI / build-and-test (pull_request) Successful in 3m9s

This commit is contained in:
2026-07-18 19:32:48 +02:00
parent b28bac9f41
commit 51f20d1c91
+1 -1
View File
@@ -165,7 +165,7 @@ def run_benchmark(source_dir, dest_dir, configs, runs, profile_name):
port = find_free_port()
server = subprocess.Popen(
SERVER_CMD + ["-p", str(port)],
stdout=subprocess.DEVNULL, stderr=None,
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,
)
try:
wait_for_port(port)