2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-27 12:28:09 +00:00

Lower connection retries to 3

This commit is contained in:
Dan 2018-05-25 14:26:01 +02:00
parent 81d3d5956c
commit b04bce9dba

View File

@ -26,7 +26,7 @@ log = logging.getLogger(__name__)
class Connection:
MAX_RETRIES = 5
MAX_RETRIES = 3
MODES = {
0: TCPFull,