From f539da7d89f88c73248133612d786aa1f8468cf1 Mon Sep 17 00:00:00 2001 From: Liza Date: Fri, 30 Aug 2024 16:18:58 +0300 Subject: [PATCH] [#166] preset: Add missing container_creation_retry parameter Signed-off-by: Liza --- scenarios/preset/helpers/frostfs_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenarios/preset/helpers/frostfs_cli.py b/scenarios/preset/helpers/frostfs_cli.py index 73f48fa..01b4aaf 100644 --- a/scenarios/preset/helpers/frostfs_cli.py +++ b/scenarios/preset/helpers/frostfs_cli.py @@ -88,7 +88,7 @@ def create_container(endpoint, policy, container_creation_retry, wallet_path, co return cid log(f"Created container {cid} is not stored on {endpoint}, creating another one...", endpoint) - return create_container(endpoint, policy, wallet_path, config, acl, local, retry + 1) + return create_container(endpoint, policy, container_creation_retry, wallet_path, config, acl, local, retry + 1) def upload_object(container, payload_filepath, endpoint, wallet_file, wallet_config):