Fix recursion issue #129

Merged
abereziny merged 1 commit from abereziny/xk6-frostfs:bugfix-local-recursion into master 2024-02-15 13:56:35 +00:00

View file

@ -10,9 +10,9 @@ def create_container(endpoint, policy, wallet_path, config, acl, local=False, de
if config:
wallet_config = f"--config {config}"
if acl:
acl = f"--basic-acl {acl}"
acl_param = f"--basic-acl {acl}"
cmd_line = f"frostfs-cli --rpc-endpoint {endpoint} container create {wallet_file} {wallet_config} " \
f" --policy '{policy}' {acl} --await"
f" --policy '{policy}' {acl_param} --await"
output, success = execute_cmd(cmd_line)