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