fix: duplicate session commit in step logging (#7512)

* fix: duplicate session commit in step logging

* update all callsites
This commit is contained in:
cthomas
2025-12-18 17:23:09 -08:00
committed by Caren Thomas
parent 4d8d9757aa
commit 9a95a8f976
27 changed files with 148 additions and 74 deletions

View File

@@ -43,7 +43,8 @@ async def _clear_tables():
if table.name == "block_history":
continue
await session.execute(table.delete()) # Truncate table
await session.commit()
# context manager now handles commits
# await session.commit()
def _run_server():