Skip to content

Commit

Permalink
[#2112] give each minio instance its own data dir
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinKyleJames authored and alanking committed May 4, 2023
1 parent b703eae commit 75c9963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irods_consortium_continuous_integration_test_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def download_and_start_minio_server():
procs.append(subprocess.Popen([path_to_minio, 'server',
'--address', ':' + p["address"],
'--console-address', ':' + p["console_address"],
'/data']))
'/data_%s' % p[minio_region_name_key]]))

return procs

Expand Down

0 comments on commit 75c9963

Please sign in to comment.