Add timeout to connect()

This commit is contained in:
Lonami Exo
2017-06-22 10:39:00 +02:00
parent e7fac8e254
commit 52a42661ee
2 changed files with 10 additions and 5 deletions

View File

@@ -129,12 +129,14 @@ class TelegramClient(TelegramBareClient):
# region Connecting
def connect(self, *args):
def connect(self, timeout=timedelta(seconds=5), *args):
"""Connects to the Telegram servers, executing authentication if
required. Note that authenticating to the Telegram servers is
not the same as authenticating the desired user itself, which
may require a call (or several) to 'sign_in' for the first time.
The specified timeout will be used on internal .invoke()'s.
*args will be ignored.
"""
return super(TelegramClient, self).connect()