remove exception-returning since it overwrites fail_on_error

This commit is contained in:
2025-10-21 13:16:53 +02:00
parent 0207755b99
commit 89df88acc0

View File

@@ -98,5 +98,4 @@ class WikiDumpHandler(xml.sax.ContentHandler):
# Write to all handlers concurrently
await asyncio.gather(
*[handler.write_entry(entry, uid) for handler in self.handlers],
return_exceptions = True,
)