Fix endpoint parameter

Signed-off-by: Vladimir Domnich <v.domnich@yadro.com>
develop
Vladimir Domnich 2022-07-25 18:47:16 +03:00
parent 3f12bd75f6
commit 46b593b02e
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ def run_control_command(node_name: str, command: str) -> str:
if not STORAGE_CONTROL_ENDPOINT_PRIVATE:
cmd = (
f'{NEOFS_CLI_EXEC} {command} --rpc-endpoint {control_endpoint} '
f'{NEOFS_CLI_EXEC} {command} --endpoint {control_endpoint} '
f'--wallet {wallet_path} --config {WALLET_CONFIG}'
)
output = _cmd_run(cmd)