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:
for subscriber_id in user.get_telegram_subscribers():
tb.send_message(subscriber_id, text).wait()
sleep(0.5)
sleep(0.1)
except Exception:
logger.error('Error telegramming: ' + user.get_city() + ': '
+ str(report.id), exc_info=True)

View File

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