File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
services/web/server/src/simcore_service_webserver/functions Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -770,9 +770,9 @@ def _decode_functionjob(
770770 inputs = functionjob_db .inputs ,
771771 outputs = functionjob_db .outputs ,
772772 project_job_id = functionjob_db .class_specific_data ["project_job_id" ],
773- job_creation_task_id = functionjob_db .class_specific_data [
773+ job_creation_task_id = functionjob_db .class_specific_data . get (
774774 "job_creation_task_id"
775- ] ,
775+ ) ,
776776 created_at = functionjob_db .created ,
777777 )
778778
@@ -785,9 +785,9 @@ def _decode_functionjob(
785785 inputs = functionjob_db .inputs ,
786786 outputs = functionjob_db .outputs ,
787787 solver_job_id = functionjob_db .class_specific_data ["solver_job_id" ],
788- job_creation_task_id = functionjob_db .class_specific_data [
788+ job_creation_task_id = functionjob_db .class_specific_data . get (
789789 "job_creation_task_id"
790- ] ,
790+ ) ,
791791 created_at = functionjob_db .created ,
792792 )
793793
You canβt perform that action at this time.
0 commit comments