less sleep pls

master
Egg 2023-05-24 17:56:59 +02:00
parent 60df1dc9ad
commit 81d20bf67c
2 changed files with 4 additions and 4 deletions

View File

@ -89,7 +89,7 @@ class TelegramBot(Bot):
try: try:
for subscriber_id in user.get_telegram_subscribers(): for subscriber_id in user.get_telegram_subscribers():
tb.send_message(subscriber_id, text).wait() tb.send_message(subscriber_id, text).wait()
sleep(0.5) sleep(0.1)
except Exception: except Exception:
logger.error('Error telegramming: ' + user.get_city() + ': ' logger.error('Error telegramming: ' + user.get_city() + ': '
+ str(report.id), exc_info=True) + str(report.id), exc_info=True)

View File

@ -31,15 +31,15 @@ if __name__ == '__main__':
while True: while True:
for user in db.active_users: for user in db.active_users:
for bot in bots: for bot in bots:
sleep(0.5) sleep(0.1)
reports = bot.crawl(user) reports = bot.crawl(user)
for status in reports: for status in reports:
sleep(0.5) sleep(0.1)
if not user.is_appropriate(status): if not user.is_appropriate(status):
logger.info("Inaproppriate message: %d %s %s" % (user.uid, status.author, status.text)) logger.info("Inaproppriate message: %d %s %s" % (user.uid, status.author, status.text))
continue continue
for bot2 in bots: for bot2 in bots:
sleep(0.5) sleep(0.1)
bot2.post(user, status) bot2.post(user, status)
logger.info("Resent: %d %s %s" % (user.uid, status.author, status.text)) logger.info("Resent: %d %s %s" % (user.uid, status.author, status.text))
except Exception: except Exception: