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 Aug 15, 2023
1 parent 398b076 commit d89d0c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions irods_consortium_continuous_integration_test_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ def download_and_start_minio_server():
del os.environ[minio_region_name_key]

procs.append(subprocess.Popen([path_to_minio, 'server',
'--address', f':{p["address"]}',
'--console-address', f':{p["console_address"]}',
'/data']))
'--address', ':' + p["address"],
'--console-address', ':' + p["console_address"],
'/data_%s' % p[minio_region_name_key]]))

return procs

Expand Down

0 comments on commit d89d0c2

Please sign in to comment.