Compare commits
2 Commits
421cc06d6c
...
a11629f543
Author | SHA1 | Date | |
---|---|---|---|
a11629f543 | |||
11f96a6069 |
@ -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()
|
||||
|
@ -26,6 +26,7 @@ class Connection:
|
||||
self._host = host
|
||||
self._port = port
|
||||
self._socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
self._socket.settimeout(2)
|
||||
|
||||
self._seq = 0 # state of the sequence number generator
|
||||
self._requests = {} # waiting area for pending responses
|
||||
|
Loading…
Reference in New Issue
Block a user