Skip to content
This repository was archived by the owner on Feb 16, 2026. It is now read-only.

Commit 4cbe14b

Browse files
committed
fixup! [FIX] conversion
1 parent 825470a commit 4cbe14b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

queue_job/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def db_record_from_uuid(env, job_uuid):
360360
record = model.search([('uuid', '=', job_uuid)], limit=1)
361361
if record.context:
362362
try:
363-
ctx = yaml.load(record.context)
363+
ctx = json.loads(record.context)
364364
except Exception as e:
365365
_logger.error('\n\nERROR Due to JSON CONVERSION: %s\n\n' % e)
366366
return record.with_env(env)

0 commit comments

Comments
 (0)