DavidLiu 3 月之前
父节点
当前提交
41a0066d00
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/core/voip/bot.py

+ 2 - 2
src/core/voip/bot.py

@@ -574,7 +574,7 @@ class BotAgent:
         self.dataHandleServer = DataHandleServer(app)
         self.dataHandleServer = DataHandleServer(app)
         self.pjsua_thread = None
         self.pjsua_thread = None
         self.start()
         self.start()
-        threading.Thread(target=self.thread_health_daemon).start()
+        threading.Thread(target=self.main_thread_daemon).start()
 
 
     def create_pjsua2(self, timeout_sec=86400):
     def create_pjsua2(self, timeout_sec=86400):
         start_time = time.time()
         start_time = time.time()
@@ -646,7 +646,7 @@ class BotAgent:
         # Destroy the library
         # Destroy the library
         self.ep.libDestroy()
         self.ep.libDestroy()
 
 
-    def thread_health_daemon(self):
+    def main_thread_daemon(self):
         while not self.daemon_stopping:
         while not self.daemon_stopping:
             _lock = self.play_complete_degree_check()
             _lock = self.play_complete_degree_check()
             if _lock:
             if _lock: