|
@@ -574,7 +574,7 @@ class BotAgent:
|
|
|
self.dataHandleServer = DataHandleServer(app)
|
|
|
self.pjsua_thread = None
|
|
|
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):
|
|
|
start_time = time.time()
|
|
@@ -646,7 +646,7 @@ class BotAgent:
|
|
|
# Destroy the library
|
|
|
self.ep.libDestroy()
|
|
|
|
|
|
- def thread_health_daemon(self):
|
|
|
+ def main_thread_daemon(self):
|
|
|
while not self.daemon_stopping:
|
|
|
_lock = self.play_complete_degree_check()
|
|
|
if _lock:
|