forked from TrueCloudLab/frostfs-testlib
parent
584ba5f0d1
commit
987e7f2a30
2 changed files with 2 additions and 3 deletions
|
@ -118,7 +118,7 @@ class FrostfsCliShards(CliCommand):
|
||||||
wallet: str,
|
wallet: str,
|
||||||
wallet_password: str,
|
wallet_password: str,
|
||||||
address: Optional[str] = None,
|
address: Optional[str] = None,
|
||||||
json: bool = False,
|
json_mode: bool = False,
|
||||||
timeout: Optional[str] = None,
|
timeout: Optional[str] = None,
|
||||||
) -> CommandResult:
|
) -> CommandResult:
|
||||||
"""
|
"""
|
||||||
|
@ -126,7 +126,7 @@ class FrostfsCliShards(CliCommand):
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
address: Address of wallet account.
|
address: Address of wallet account.
|
||||||
json: Print shard info as a JSON array.
|
json_mode: Print shard info as a JSON array.
|
||||||
endpoint: Remote node address (as 'multiaddr' or '<host>:<port>').
|
endpoint: Remote node address (as 'multiaddr' or '<host>:<port>').
|
||||||
wallet: WIF (NEP-2) string or path to the wallet or binary key.
|
wallet: WIF (NEP-2) string or path to the wallet or binary key.
|
||||||
wallet_password: Wallet password.
|
wallet_password: Wallet password.
|
||||||
|
|
|
@ -99,7 +99,6 @@ class ShardsWatcher:
|
||||||
endpoint=self.storage_node.get_control_endpoint(),
|
endpoint=self.storage_node.get_control_endpoint(),
|
||||||
wallet=self.storage_node.get_remote_wallet_path(),
|
wallet=self.storage_node.get_remote_wallet_path(),
|
||||||
wallet_password=self.storage_node.get_wallet_password(),
|
wallet_password=self.storage_node.get_wallet_password(),
|
||||||
json=True,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
return json.loads(response.stdout.split(">", 1)[1])
|
return json.loads(response.stdout.split(">", 1)[1])
|
||||||
|
|
Loading…
Reference in a new issue