-
- Downloads
Improve exception handling for background processes
There were a bunch of places where we fire off a process to happen in the background, but don't have any exception handling on it - instead relying on the unhandled error being logged when the relevent deferred gets garbage-collected. This is unsatisfactory for a number of reasons: - logging on garbage collection is best-effort and may happen some time after the error, if at all - it can be hard to figure out where the error actually happened. - it is logged as a scary CRITICAL error which (a) I always forget to grep for and (b) it's not really CRITICAL if a background process we don't care about fails. So this is an attempt to add exception handling to everything we fire off into the background.
Showing
- synapse/app/appservice.py 10 additions, 5 deletionssynapse/app/appservice.py
- synapse/app/federation_sender.py 15 additions, 12 deletionssynapse/app/federation_sender.py
- synapse/app/pusher.py 17 additions, 14 deletionssynapse/app/pusher.py
- synapse/app/synchrotron.py 49 additions, 46 deletionssynapse/app/synchrotron.py
- synapse/app/user_dir.py 10 additions, 3 deletionssynapse/app/user_dir.py
- synapse/appservice/scheduler.py 14 additions, 11 deletionssynapse/appservice/scheduler.py
- synapse/crypto/keyring.py 48 additions, 45 deletionssynapse/crypto/keyring.py
- synapse/federation/transaction_queue.py 2 additions, 0 deletionssynapse/federation/transaction_queue.py
- synapse/federation/transport/server.py 10 additions, 3 deletionssynapse/federation/transport/server.py
- synapse/groups/attestations.py 24 additions, 20 deletionssynapse/groups/attestations.py
- synapse/handlers/message.py 16 additions, 6 deletionssynapse/handlers/message.py
- synapse/handlers/presence.py 15 additions, 4 deletionssynapse/handlers/presence.py
- synapse/handlers/receipts.py 32 additions, 29 deletionssynapse/handlers/receipts.py
- synapse/handlers/typing.py 23 additions, 20 deletionssynapse/handlers/typing.py
- synapse/notifier.py 9 additions, 4 deletionssynapse/notifier.py
- synapse/push/emailpusher.py 7 additions, 4 deletionssynapse/push/emailpusher.py
- synapse/push/httppusher.py 4 additions, 1 deletionsynapse/push/httppusher.py
- synapse/rest/media/v1/storage_provider.py 7 additions, 2 deletionssynapse/rest/media/v1/storage_provider.py
- synapse/storage/event_push_actions.py 17 additions, 7 deletionssynapse/storage/event_push_actions.py
- synapse/util/logcontext.py 6 additions, 1 deletionsynapse/util/logcontext.py
Loading
Please register or sign in to comment