From be9b3f585529d47a89762b8c8f8948ce90004408 Mon Sep 17 00:00:00 2001 From: Dmitriy Zayakin Date: Tue, 12 Sep 2023 17:40:45 +0300 Subject: [PATCH] Update argument func init s3 Signed-off-by: Dmitriy Zayakin --- src/frostfs_testlib/steps/s3/s3_helper.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frostfs_testlib/steps/s3/s3_helper.py b/src/frostfs_testlib/steps/s3/s3_helper.py index 4b900eb..d746337 100644 --- a/src/frostfs_testlib/steps/s3/s3_helper.py +++ b/src/frostfs_testlib/steps/s3/s3_helper.py @@ -194,6 +194,7 @@ def init_s3_credentials( cluster: Cluster, policy: Optional[dict] = None, s3gates: Optional[list[S3Gate]] = None, + container_placement_policy: Optional[str] = None, ): gate_public_keys = [] bucket = str(uuid.uuid4()) @@ -209,6 +210,7 @@ def init_s3_credentials( wallet_password=wallet.password, container_policy=policy, container_friendly_name=bucket, + container_placement_policy=container_placement_policy, ).stdout aws_access_key_id = str( re.search(r"access_key_id.*:\s.(?P\w*)", issue_secret_output).group(