Clean up redundant message output

This commit is contained in:
Joshua Boniface 2020-02-19 16:22:29 -05:00
parent 65932b20d2
commit 0caea03428
1 changed files with 28 additions and 28 deletions

View File

@ -368,8 +368,8 @@ def node_secondary(node, wait):
if not retcode:
cleanup(retcode, retmsg)
else:
click.echo(retmsg)
if wait:
click.echo(retmsg)
click.echo("Waiting for state transition... ", nl=False)
# Every half-second, check if the API is reachable and the node is in secondary state
while True:
@ -411,8 +411,8 @@ def node_primary(node, wait):
if not retcode:
cleanup(retcode, retmsg)
else:
click.echo(retmsg)
if wait:
click.echo(retmsg)
click.echo("Waiting for state transition... ", nl=False)
# Every half-second, check if the API is reachable and the node is in secondary state
while True: