diff --git a/job_controller/jobs/rescale_video/job.py b/job_controller/jobs/rescale_video/job.py index 893be4b1451ed2d76e1bc5266513765440552e44..ef3c23a6f4f53be57c1e7564cc9c852c2e7e3a1b 100644 --- a/job_controller/jobs/rescale_video/job.py +++ b/job_controller/jobs/rescale_video/job.py @@ -62,8 +62,6 @@ def execute(database, own_job_id, input_data: CJsonObject): res = subprocess.run(cmd) print(f"FFmpeg finished with exit code: {res.returncode}") - # DEBUG - sleep(60 * 10) if res.returncode != 0: raise Exception(f"ffmpeg returned non-zero exitcode {res.returncode}") @@ -73,6 +71,3 @@ def execute(database, own_job_id, input_data: CJsonObject): output_file.parent.mkdir(parents=True, exist_ok=True) output_file.unlink(missing_ok=True) shutil.move(tmp_output_file, output_file) - - # DEBUG - sleep(60 * 10)