0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Fix exception logging in sendalerts

The on_notify_done callback was accessing exception data incorrectly.
If there's been an exception in the thread, it will be re-thrown while
calling future.result(), and we must catch it with "try ... except"
instead of calling future.exception().
This commit is contained in:
Pēteris Caune 2025-03-14 13:36:12 +02:00
parent 18585d163d
commit 74b7860a0d
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2

View file

@ -79,10 +79,11 @@ class Command(BaseCommand):
def on_notify_done(self, future: Future[str | None]) -> None:
close_old_connections()
self.seats.release()
if logs := future.result():
self.stdout.write(logs)
if exc := future.exception():
try:
if logs := future.result():
self.stdout.write(logs)
except Exception as exc:
logger.error("Exception in notify", exc_info=exc)
raise exc