774056846 4 달 전
부모
커밋
5358652975
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      src/core/callcenter/cache.py
  2. 1 1
      src/core/callcenter/esl/handler/channel_hangup_handler.py

+ 2 - 2
src/core/callcenter/cache.py

@@ -64,7 +64,7 @@ class Cache:
     def add_call_info(self, call: CallInfo):
         for k, v in call.device_info_map.items():
             self.add_device(k, call.call_id)
-        # print('davidadd_call_info call_id:%s, call=%s'% (call.call_id, call))
+        # print('liuwei::debugger::add_call_info call_id:%s, call=%s'% (call.call_id, call))
         self.redis_handler.set(CALL_INFO + call.call_id, call.to_json_string(), self.cacheDay * 24 * 60 * 60)
 
 
@@ -79,7 +79,7 @@ class Cache:
         text = None
         if call_id:
             text = self.redis_handler.get(CALL_INFO + call_id)
-            # print('davidget_call_info call_id:%s, text:%s'% (call_id, text))
+            # print('liuwei::debugger::get_call_info call_id:%s, text:%s'% (call_id, text))
         if text:
             return CallInfo.from_json(text)
 

+ 1 - 1
src/core/callcenter/esl/handler/channel_hangup_handler.py

@@ -105,7 +105,7 @@ class ChannelHangupHandler(EslEventHandler):
             #     return
             # 一般情况下,挂断其他所有设备
             if device.cdr_type <= 4 and not call.end_time and not skip_hangup_all:
-                call.end_time = device.end_time
+                # call.end_time = device.end_time
                 self.logger.info("liuwei::debugger::hang_all, call_info:%s, device_info:%s"%(call,device))
                 self.call_service.hangup_all(call, CallCause.HANGUP_EVENT)
                 # self.inbound_client.hangup_call(call_id, device_id, CallCause.HANGUP_EVENT)