Skip to content

Commit

Permalink
Job submission bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bsatoriu committed Sep 12, 2024
1 parent 84b2bcc commit 3871181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/endpoints/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def post(self):
queue = job_queue.validate_or_get_queue(queue, job_type, user.id)
if job_queue.contains_time_limit(queue):
hysds.set_timelimit_for_dps_sandbox(params, queue)
response = hysds.mozart_submit_job(job_type=job_type, params=params, dedup=dedup, queue=queue,
response = hysds.mozart_submit_job(job_type=job_type, params=params, dedup=dedup, queue=queue.queue_name,
identifier=identifier)

logging.info("Mozart Response: {}".format(json.dumps(response)))
Expand Down

0 comments on commit 3871181

Please sign in to comment.