From: Guillaume Pellerin Date: Mon, 9 Feb 2026 22:31:46 +0000 (+0100) Subject: bugfix X-Git-Tag: 2.16.2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=2d1ca79c0c4e18faa396d22cf0917fc9bc182b6c;p=teleforma.git bugfix --- diff --git a/teleforma/models/core.py b/teleforma/models/core.py index 75b8a7de..ee8316d7 100644 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -688,7 +688,7 @@ def _notify_live_conference_thread(conference_id): try: conference = Conference.objects.get(id=conference_id) if conference.streaming and not conference.notified_live: - logger.info("notify conference on secondary thread " + conference.id) + logger.info("notify conference on secondary thread " + str(conference.id)) conference.notify_live_sync() conference.notified_live = True conference.save()