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