Fix typo in job processor
This commit is contained in:
parent
87ed5a55d4
commit
fc21843025
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ if __name__ == '__main__':
|
|||
for job in job_queue.job_iter('render'):
|
||||
logging.info(f'Processing {job.type} job {job.id} session {job["session_id"]} from {job.client} submitted {job.created}')
|
||||
with job:
|
||||
job.result = subprocess.call(['sudo', '/usr/local/sbin/pogojig_render.sh', job['session_id']])
|
||||
job.result = subprocess.call(['sudo', '/usr/local/sbin/pogojig_generate.sh', job['session_id']])
|
||||
logging.info(f'Finishied processing {job.type} job {job.id}')
|
||||
logging.info('Caught SIGINT. Exiting.')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue