Set default timeout to 60s

This commit is contained in:
Dave O'Connor 2021-03-30 11:52:13 +00:00
parent ec43960560
commit e138bd95cd
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class NeoHubConnectionError(Error):
class NeoHub:
def __init__(self, host='Neo-Hub', port=4242, request_timeout=5, request_attempts=1):
def __init__(self, host='Neo-Hub', port=4242, request_timeout=60, request_attempts=1):
self._logger = logging.getLogger('neohub')
self._host = host
self._port = port