refactor: log silent AttributeError catches, add _sync_class to remaining services, drop dead ctx slot

This commit is contained in:
Brett Williams
2026-06-05 21:27:02 -05:00
parent c592236c98
commit b7ba1201e4
5 changed files with 16 additions and 6 deletions
+5
View File
@@ -24,6 +24,11 @@ logger = logging.getLogger()
class DistributedJobManager:
_default_instance: Optional['DistributedJobManager'] = None
@classmethod
def _sync_class(cls) -> None:
if cls._default_instance is not None:
pass # no class-level attributes to sync
def __init__(self) -> None:
self.background_worker: Optional[threading.Thread] = None