From 62195926207102e358a8884bfe14a3ab998872b5 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Fri, 26 Jun 2026 19:03:15 -0400 Subject: [PATCH] Listen on public interface for test benchmark --- reproduce_threading_report.sh | 2 +- test_benchmark_config.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reproduce_threading_report.sh b/reproduce_threading_report.sh index 5e25cf8..cc92d47 100755 --- a/reproduce_threading_report.sh +++ b/reproduce_threading_report.sh @@ -6,7 +6,7 @@ set -euo pipefail BUILD_DIR="build" CONFIG="test_benchmark_config.toml" -DURATION=30 +DURATION=120 if [ ! -d "$BUILD_DIR" ]; then echo "Error: build directory '$BUILD_DIR' not found. Build the project first." >&2 diff --git a/test_benchmark_config.toml b/test_benchmark_config.toml index 55ae2d6..b79d1e0 100644 --- a/test_benchmark_config.toml +++ b/test_benchmark_config.toml @@ -3,7 +3,7 @@ [server] # Network interfaces to listen on - both TCP for external access and Unix socket for high-performance local testing interfaces = [ - { type = "tcp", address = "127.0.0.1", port = 8080 }, + { type = "tcp", address = "0.0.0.0", port = 8123 }, { type = "unix", path = "weaseldb.sock" } ] # Maximum request size in bytes (for 413 Content Too Large responses)