]> git.parisson.com Git - teleforma.git/commitdiff
avoid try catch on deefuzzer start and sync rpc calls
authorGuillaume Pellerin <yomguy@parisson.com>
Tue, 27 Jan 2026 23:22:08 +0000 (00:22 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Tue, 27 Jan 2026 23:22:08 +0000 (00:22 +0100)
teleforma/views/core.py

index 26b1579de3e925cfd0d1707c15beab999c624019..6ddb74fc648ea96e815aca4140b754ced322c807 100644 (file)
@@ -633,26 +633,16 @@ class ConferenceRecordView(FormView):
             server, c = StreamingServer.objects.get_or_create(host=status.ip, port=port, type=server_type)
             station = Station(conference=conference, public_id=uuid)
             station.setup(conf)
-            try:
-                station.start()
-            except:
-                continue
-
+            station.start()
             stream = LiveStream(conference=conference, server=server,
                             stream_type=type, streaming=True)
             stream.save()
 
-        try:
-            self.push()
-        except:
-            pass
-
+        self.push()
+        
         if conference.streaming:
-            try:
-                live_message(self.conference)
-            except:
-                pass
-
+            live_message(self.conference)
+            
         return super(ConferenceRecordView, self).form_valid(form)
 
     def snapshot(self, url, dir):