From e7347c38dda33194ae9385231c2cd431fe4d45c4 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Mon, 23 Dec 2024 12:24:04 -0500 Subject: [PATCH] Allow overriding log level in run-s3-tests.sh --- src/test/resources/run-s3-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/resources/run-s3-tests.sh b/src/test/resources/run-s3-tests.sh index d175770..421b14e 100755 --- a/src/test/resources/run-s3-tests.sh +++ b/src/test/resources/run-s3-tests.sh @@ -11,7 +11,7 @@ export S3TEST_CONF="${PWD}/src/test/resources/s3-tests.conf" # launch S3Proxy using HTTP and a fixed port sed "s,^\(s3proxy.endpoint\)=.*,\1=http://127.0.0.1:${S3PROXY_PORT}," \ < "src/test/resources/$S3PROXY_CONF" | grep -v secure-endpoint > target/s3proxy.conf -$S3PROXY_BIN --properties target/s3proxy.conf & +java -DLOG_LEVEL=${LOG_LEVEL:-info} -jar $S3PROXY_BIN --properties target/s3proxy.conf & S3PROXY_PID=$! function finish {