move event print before execution
This commit is contained in:
parent
963f9d9c77
commit
082e55ed19
1 changed files with 2 additions and 2 deletions
|
@ -152,13 +152,13 @@ for event in events:
|
||||||
if args.ids and event['id'] not in args.ids:
|
if args.ids and event['id'] not in args.ids:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
event_print(event, "enqueued as "+str(event['id']))
|
||||||
|
|
||||||
job_id = enqueue_job(event)
|
job_id = enqueue_job(event)
|
||||||
if not job_id:
|
if not job_id:
|
||||||
event_print(event, "job was not enqueued successfully, skipping postprocessing")
|
event_print(event, "job was not enqueued successfully, skipping postprocessing")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
event_print(event, "enqueued as "+job_id)
|
|
||||||
|
|
||||||
event_print(event, "finalizing job")
|
event_print(event, "finalizing job")
|
||||||
finalize_job(job_id, event)
|
finalize_job(job_id, event)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue