From 0d7979fc3ff720f6e9615ca04d2d8f3c7ae08c2a Mon Sep 17 00:00:00 2001 From: moneromooo Date: Thu, 29 Jan 2015 22:54:36 +0000 Subject: [PATCH] irc: increase the max backoff delay a bit Freenode still throttles from time to time --- tipbot/modules/irc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tipbot/modules/irc.py b/tipbot/modules/irc.py index 24aded8..b343cf9 100644 --- a/tipbot/modules/irc.py +++ b/tipbot/modules/irc.py @@ -24,7 +24,7 @@ from tipbot.network import * from tipbot.command_manager import * irc_min_send_delay = 0.05 # seconds -irc_max_send_delay = 1.1 # seconds +irc_max_send_delay = 1.2 # seconds def GetNick(data): # Return Nickname nick = data.split('!')[0]