From: Guillaume Pellerin Date: Mon, 9 Feb 2026 22:21:22 +0000 (+0100) Subject: Merge branch 'feature/thread-notif' of git.parisson.com:git/teleforma into feature... X-Git-Tag: 2.16.2~1^2~1 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=e8c8fd851a4a3f43f6813d0fa58a6a8ab5ecb501;p=teleforma.git Merge branch 'feature/thread-notif' of git.parisson.com:git/teleforma into feature/thread-notif --- e8c8fd851a4a3f43f6813d0fa58a6a8ab5ecb501 diff --cc app/settings.py index be381fc8,be381fc8..0bbdd777 --- a/app/settings.py +++ b/app/settings.py @@@ -266,7 -266,7 +266,7 @@@ LOGGING = }, 'handlers': { 'file': { -- 'level': 'ERROR', ++ 'level': 'INFO', 'class': 'logging.FileHandler', 'filename': "/var/log/app/app.log", 'formatter': 'simple', diff --cc teleforma/models/core.py index 96d54e63,0e1c68af..dac4d362 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@@ -686,8 -688,8 +688,8 @@@ def _notify_live_conference_thread(conf try: conference = Conference.objects.get(id=conference_id) if conference.streaming and not conference.notified_live: - print("notify conference on secondary thread", conference.id) + logger.info("notify conference on secondary thread " + conference.id) - conference.notify_sync() + conference.notify_live_sync() conference.notified_live = True conference.save() except Conference.DoesNotExist: