Tweak workers

This commit is contained in:
Thomas Sileo 2022-08-14 22:44:30 +02:00
parent 7d9ced7740
commit 6c3fe894b5
2 changed files with 6 additions and 3 deletions

View file

@ -30,8 +30,9 @@ class Worker(Generic[T]):
next_message = await self.get_next_message(db_session)
if next_message:
await self.process_message(db_session, next_message)
await asyncio.sleep(0.5)
else:
await asyncio.sleep(1)
await asyncio.sleep(2)
async def _until_stopped(self) -> None:
await self._stop_event.wait()