From f409f10d181b0a7e064deb20a034f988bd62a09c Mon Sep 17 00:00:00 2001 From: kannappanr <30541348+kannappanr@users.noreply.github.com> Date: Fri, 12 Apr 2019 12:51:36 -0700 Subject: [PATCH] Fix SimpleCI to use different data directory than mint (#7520) Currently, the backend minio server uses the same data directory as the mint test itself, causing `s3 sync` to fail often. Now `minio` backend will use a different data directory `/data` instead of `/mint/data` --- buildscripts/gateway-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/gateway-tests.sh b/buildscripts/gateway-tests.sh index c6030d1ce..117e4c015 100755 --- a/buildscripts/gateway-tests.sh +++ b/buildscripts/gateway-tests.sh @@ -22,7 +22,7 @@ set -o pipefail function start_minio_server() { MINIO_ACCESS_KEY=minio MINIO_SECRET_KEY=minio123 \ - minio --quiet --json server data --address 127.0.0.1:24242 > server.log 2>&1 & + minio --quiet --json server /data --address 127.0.0.1:24242 > server.log 2>&1 & server_pid=$! sleep 3