Compare commits

..

No commits in common. "aebaa7e54600284f05de094cd9b998dad67c7dbc" and "80462d2a61e03f89d0ab7ecb4b502548681bb924" have entirely different histories.

View File

@ -14,7 +14,6 @@ class TasksHandlerMixin:
while True:
response: tasks_pb2.TakeResponse = self.stub.Take(tasks_pb2.TakeRequest(queue=self.queue_name))
task: tasks_pb2.Task = response.task
print(task)
if not task:
time.sleep(0.2)
continue