DavidLiu 3 달 전
부모
커밋
307b4369dd
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      src/core/voip/bot.py

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

@@ -618,12 +618,13 @@ class BotAgent:
         if self.acd_service:
             self.acd_service.transfer_to_agent(call_id, device_id, service_id, hold=True)
         # sip_headers = {'P-LIBRA-HangUpReason': 'transferToAgent', 'P-LIBRA-ServiceId': service_id}
-        try_count = 1000
+        try_count = 10
         while try_count >0:
             if self.cache.get_after_play_hold_music(call_id):
                 self.hangup(user_part)
                 break
-            # time.sleep(0.1)
+            try_count = try_count - 1
+            time.sleep(0.1)
 
     def hangup(self, user_part, reason="NORMAL_CLEARING", **sip_headers):
         call_op_param = pj.CallOpParam(True)