Use pubsub messages instead of a background thread to process changes (#92)

* Use pubsub messages instead of a background thread to process changes to the RenderQueue

* Misc logging improvements
This commit is contained in:
2024-08-08 23:01:26 -05:00
committed by GitHub
parent 3600eeb21b
commit 51a5a63944
2 changed files with 16 additions and 15 deletions

View File

@@ -103,7 +103,7 @@ class BaseRenderWorker(Base):
self.watchdog_timeout = 120
def __repr__(self):
return f"<{self.__class__.__name__}|{self.id}|{self.name}|{self.status}|{self.input_path}>"
return f"<Job id:{self.id} p{self.priority} {self.renderer}-{self.renderer_version} '{self.name}' status:{self.status.value}>"
@property
def total_frames(self):