DavidLiu 3 месяцев назад
Родитель
Сommit
1f4203efe6
1 измененных файлов с 10 добавлено и 3 удалено
  1. 10 3
      src/core/voip/bot.py

+ 10 - 3
src/core/voip/bot.py

@@ -583,8 +583,13 @@ 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")
 
     def main_thread_daemon(self):
         while not self.daemon_stopping:
@@ -722,14 +727,16 @@ class BotAgent:
         except:
             pass
         self.logger.info("destroy, come in 22222")
-        self.call_players.clear()
-        self.accounts.clear()
-        self.calls.clear()
+        # self.call_players.clear()
+        # self.accounts.clear()
+        # self.calls.clear()
         # # Destroy the library
         # self.ep.libDestroy()
+        time.sleep(0.2)
         self.logger.info("destroy, come in 33333")
 
         if not self.pjsua_thread.is_alive():
+            self.logger.info("destroy, pre thread already stopped")
             return
         ident = self.pjsua_thread.ident
         thread_id = ctypes.pythonapi.PyThreadState_SetAsyncExc