]> git.parisson.com Git - teleforma.git/commitdiff
bugfix dev feature/thread-notif 2.16.2
authorGuillaume Pellerin <guillaume.pellerin@parisson.com>
Mon, 9 Feb 2026 22:31:46 +0000 (23:31 +0100)
committerGuillaume Pellerin <guillaume.pellerin@parisson.com>
Mon, 9 Feb 2026 22:31:46 +0000 (23:31 +0100)
teleforma/models/core.py

index 75b8a7de41a74e605b86c098336a84d86cf139fb..ee8316d70f651f58752153354d278260d880c3ab 100644 (file)
@@ -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()