fix: preserve original traceback when re-raising exceptions

This commit is contained in:
g0ldyy
2026-01-04 22:08:56 +01:00
parent 5ff5da6129
commit b1cf30b4e8
+1 -1
View File
@@ -630,7 +630,7 @@ async def _execute_standard_sqlite_insert(rows: list[dict]):
if attempt < 4:
await asyncio.sleep(0.2 * (attempt + 1))
continue
raise e
raise
async def _execute_batched_upsert(query: str, rows):