Merge pull request #42 from bcye/fix/dont-supress-exceptions

remove exception-returning since it overwrites `fail_on_error`
This commit is contained in:
Bruce
2025-10-21 14:27:15 +02:00
committed by GitHub

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,
)