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 @@ -859,9 +859,9 @@ def _decode_functionjob(
859859 inputs = functionjob_db .inputs ,
860860 outputs = functionjob_db .outputs ,
861861 project_job_id = functionjob_db .class_specific_data ["project_job_id" ],
862- job_creation_task_id = functionjob_db .class_specific_data [
862+ job_creation_task_id = functionjob_db .class_specific_data . get (
863863 "job_creation_task_id"
864- ] ,
864+ ) ,
865865 created_at = functionjob_db .created ,
866866 )
867867
@@ -874,9 +874,9 @@ def _decode_functionjob(
874874 inputs = functionjob_db .inputs ,
875875 outputs = functionjob_db .outputs ,
876876 solver_job_id = functionjob_db .class_specific_data ["solver_job_id" ],
877- job_creation_task_id = functionjob_db .class_specific_data [
877+ job_creation_task_id = functionjob_db .class_specific_data . get (
878878 "job_creation_task_id"
879- ] ,
879+ ) ,
880880 created_at = functionjob_db .created ,
881881 )
882882
You canβt perform that action at this time.
0 commit comments