Skip to content

Commit

Permalink
change minio root user
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanguage committed Mar 13, 2024
1 parent b41c770 commit 3efcd27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioimageio/engine/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async def start_server(host = "0.0.0.0", port = 9000, public_base_url = ""):
# get current file path so we can get the path of apps under the same directory
# current_dir = os.path.dirname(os.path.abspath(__file__))
launcher = HyphaLauncher()
minio_root_user = secrets.token_urlsafe(16)
minio_root_user = "minio_root_user"
minio_root_password = secrets.token_urlsafe(16)
info = await launcher.launch_s3_server(minio_root_user, minio_root_password)
logger.info("S3 server launched at: %s", info["port"])
Expand Down

0 comments on commit 3efcd27

Please sign in to comment.