Skip to content

Commit f10ce87

Browse files
committed
fix: tmp
1 parent 47700ae commit f10ce87

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

diracx-logic/src/diracx/logic/jobs/status.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ async def set_job_parameters_or_attributes(
524524
# Those dicts create a mapping of job_id -> {attribute_name: value}
525525
attr_updates: dict[int, dict[str, Any]] = {}
526526
param_updates: dict[int, dict[str, Any]] = {}
527+
print("METADATA", updates)
527528

528529
for job_id, metadata in updates.items():
529530
attr_updates[job_id] = {}
@@ -554,6 +555,9 @@ async def set_job_parameters_or_attributes(
554555
# Bulk set job parameters if required
555556
await _insert_parameters(param_updates, job_parameters_db, job_db)
556557

558+
print("PARAMETERS", param_updates)
559+
print("ATTRIBUTES", attr_updates)
560+
557561

558562
async def add_heartbeat(
559563
data: dict[int, HeartbeatData],

0 commit comments

Comments
 (0)