mirror of
https://github.com/minio/minio.git
synced 2025-04-08 05:35:33 -04:00
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`
This commit is contained in:
parent
60d6887992
commit
f409f10d18
@ -22,7 +22,7 @@ set -o pipefail
|
|||||||
function start_minio_server()
|
function start_minio_server()
|
||||||
{
|
{
|
||||||
MINIO_ACCESS_KEY=minio MINIO_SECRET_KEY=minio123 \
|
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=$!
|
server_pid=$!
|
||||||
sleep 3
|
sleep 3
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user