fix: Add log_package_version_task attribute to TelemetryService (#6758)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-02-21 13:54:26 -03:00 committed by GitHub
commit 51e3121d03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,6 +45,7 @@ class TelemetryService(Service):
self.do_not_track = (
os.getenv("DO_NOT_TRACK", "False").lower() == "true" or settings_service.settings.do_not_track
)
self.log_package_version_task: asyncio.Task | None = None
async def telemetry_worker(self) -> None:
while self.running: