Add dir to job creation.

This commit is contained in:
Patrick Jentsch 2019-10-24 13:28:32 +02:00
parent 6f8a8dbc77
commit fca352c3dd

View File

@ -56,7 +56,11 @@ def service(service_handle):
''' TODO: Use secure filename '''
filename = secure_filename(file.filename)
file.save(os.path.join(dir, filename))
job_input = JobInput(filename=filename, job=job)
job_input = JobInput(
dir=os.path.join(str(job.user_id), 'jobs', str(job.id)),
filename=filename,
job=job
)
db.session.add(job_input)
job.status = 'submitted'
db.session.commit()