Compare commits

..

No commits in common. "c32bfad43185f8f7b71b6cd9a2c34afd42823195" and "0f58ed101ebe20dce6937f380109058995fe39fc" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,6 @@ from utils import queues
class Daemon(base.Daemon): class Daemon(base.Daemon):
def __init__(self): def __init__(self):
super().__init__(self)
self.telegram_bots: dict[str, dict[str, telebot.TeleBot|None]] = {} self.telegram_bots: dict[str, dict[str, telebot.TeleBot|None]] = {}
self.threads: dict[str, dict[str, threading.Thread|None]] = {} self.threads: dict[str, dict[str, threading.Thread|None]] = {}

View File

@ -13,7 +13,8 @@ class TasksHandlerMixin:
def poll(self): def poll(self):
while True: while True:
response: tasks_pb2.TakeResponse = self.stub.Take(tasks_pb2.TakeRequest(queue=self.queue_name)) response: tasks_pb2.TakeResponse = self.stub.Take(tasks_pb2.TakeRequest(queue=self.queue_name))
if not response.task: task = response.task
if not task.id:
time.sleep(0.2) time.sleep(0.2)
continue continue
try: try: