1
0
Fork 0

initialize list of finished jobs

This commit is contained in:
Sean Sube 2023-02-26 15:26:54 -06:00
parent b931da1d2c
commit eb82e73e59
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ class DevicePoolExecutor:
self.pending = {}
self.workers = {}
self.active_job = {}
self.finished = []
self.finished_jobs = 0 # TODO: turn this into a Dict per-worker
self.create_logger_worker()