Readable error messages when OMM is unreachable when using cli

This commit is contained in:
clerie 2023-06-17 18:27:30 +02:00
parent 11f96a6069
commit a11629f543
1 changed files with 9 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import time
import traceback
from . import OMMClient2
from .exceptions import ENoEnt
from .exceptions import EAuth, ENoEnt
from .messages import GetAccount, Ping
# exit handling with argparse is a bit broken even with exit_on_error=False, so we hack this
@ -40,7 +40,14 @@ def main():
if not password:
password = getpass.getpass(prompt="OMM password for {}@{}:".format(username, hostname))
c = OMMClient2(hostname, username, password, ommsync=ommsync)
try:
c = OMMClient2(hostname, username, password, ommsync=ommsync)
except EAuth:
print("Authentication failed")
exit(1)
except TimeoutError:
print("OMM unreachable")
exit(1)
parser = argparse.ArgumentParser(prog="ommclient2", add_help=False, exit_on_error=False)
subparsers = parser.add_subparsers()