Skip to content

Commit

Permalink
Fix CLI message (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsudmi authored Feb 23, 2022
1 parent 4281753 commit 4f5649b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions operator_cli/commands/sync_vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,10 @@ def sync_vault(network: str, operator: ChecksumAddress) -> None:
vault.apply_vault_changes()
vault.verify_vault_keystores()
click.secho(
f"Make sure you have the following validators"
f' running in the "{namespace}" namespace: {",".join(sorted(vault.vault_validator_names))}.'
f' If the new keystores were added, upgrade "operator" chart with --set reimportKeystores=true',
f"The vault contains {len(vault.vault_new_state)} validator keys."
f' Please upgrade the "validators" helm chart with "validatorsCount" set to {len(vault.vault_validator_names)}'
f' and "reimportKeystores" set to "true". Make sure you have the following validators running '
f'in the "{namespace}" namespace: {",".join(sorted(vault.vault_validator_names))}.',
bold=True,
fg="green",
)

0 comments on commit 4f5649b

Please sign in to comment.