From d5544919e4dc13af99e9d82bc00f8efbbb02a8f1 Mon Sep 17 00:00:00 2001 From: Taeer Bar-Yam Date: Tue, 2 Dec 2025 21:20:06 +0100 Subject: [PATCH] tests: minio: mc config host add -> mc alias set `mc config host add` has been removed SEE: https://github.com/minio/mc/issues/5206 --- tests/nixos/s3-binary-cache-store.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/nixos/s3-binary-cache-store.nix b/tests/nixos/s3-binary-cache-store.nix index 580405748..ae3cb82a4 100644 --- a/tests/nixos/s3-binary-cache-store.nix +++ b/tests/nixos/s3-binary-cache-store.nix @@ -873,7 +873,7 @@ in server.wait_for_unit("minio") server.wait_for_unit("network-addresses-eth1.service") server.wait_for_open_port(9000) - server.succeed(f"mc config host add minio http://localhost:9000 {ACCESS_KEY} {SECRET_KEY} --api s3v4") + server.succeed(f"mc alias set minio http://localhost:9000 {ACCESS_KEY} {SECRET_KEY} --api s3v4") # Run tests (each gets isolated bucket via decorator) test_credential_caching()