Fix #20 - Relaunch renderer when renderer crashes (#28)

* Render worker makes multiple attempts if file_path increases on each run

* Change blender_worker.py to not overwrite existing files

* Chmod +x to client
This commit is contained in:
2023-07-02 23:50:15 -05:00
committed by GitHub
parent a475aa999a
commit 4563dcb255
4 changed files with 52 additions and 30 deletions

View File

@@ -143,7 +143,7 @@ class DistributedJobManager:
return {k: v for k, v in local_job.children.items() if 'download_status' not in v or
v['download_status'] == 'working' or v['download_status'] is None}
logger.debug(f'subjobs_not_downloaded: {subjobs_not_downloaded()}')
logger.info(f'Waiting on {len(subjobs_not_downloaded())} subjobs for {local_job.id}')
while len(subjobs_not_downloaded()):
for child_key, subjob_cached_data in subjobs_not_downloaded().items():