|
@@ -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:
|