From d403578a6ca4aaed047ab6bc452e67b7df4a9419 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Tue, 26 Nov 2024 13:13:49 -0500 Subject: [PATCH] silence status updates with benchmark since we already have the progress bar (#480) --- benchmark/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/main.go b/benchmark/main.go index 1325704b..71a299ab 100644 --- a/benchmark/main.go +++ b/benchmark/main.go @@ -93,7 +93,7 @@ func main() { log.Panicf("failed to set ZDNS_PPROF environment variable: %v", err) } - cmd := exec.Command("../zdns", "A", "--iterative", "--verbosity=3", "--threads=100") + cmd := exec.Command("../zdns", "A", "--iterative", "--verbosity=3", "--threads=100", "--status-updates-file", "/dev/null") stdin, err := cmd.StdinPipe() if err != nil {