We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d4fbe2 commit 9953ddbCopy full SHA for 9953ddb
1 file changed
diracx-db/src/diracx/db/sql/pilot_agents/db.py
@@ -39,6 +39,6 @@ async def addPilotReferences(
39
]
40
41
# Insert multiple rows in a single execute call
42
- stmt = insert(PilotAgents)
43
- await self.conn.execute(stmt, values)
+ stmt = insert(PilotAgents).values(values)
+ await self.conn.execute(stmt)
44
return
0 commit comments