DavidLiu 3 ヶ月 前
コミット
46e5cbfa50
1 ファイル変更13 行追加7 行削除
  1. 13 7
      src/core/voip/bot.py

+ 13 - 7
src/core/voip/bot.py

@@ -583,13 +583,19 @@ class BotAgent:
             registry.BOT_AGENT_LIVES.set(self.user_part_pool.qsize())
             self.ep.libHandleEvents(100)
 
-        self.logger.info("create pjsua will shutdown")
-        self.call_players.clear()
-        self.accounts.clear()
-        self.calls.clear()
-        # Destroy the library
-        self.ep.libDestroy()
-        self.logger.info("create pjsua already shutdown")
+        try:
+            self.logger.info("create pjsua will shutdown 1111")
+            self.call_players.clear()
+            self.logger.info("create pjsua will shutdown 2222")
+            self.accounts.clear()
+            self.logger.info("create pjsua will shutdown 3333")
+            self.calls.clear()
+            self.logger.info("create pjsua will shutdown 4444")
+            # Destroy the library
+            self.ep.libDestroy()
+            self.logger.info("create pjsua already shutdown")
+        except:
+            traceback.print_exc()
 
     def main_thread_daemon(self):
         while not self.daemon_stopping: