|
@@ -23,14 +23,14 @@ class ChannelAnswerHandler(EslEventHandler):
|
|
|
|
|
|
def handle(self, address, event, coreUUID):
|
|
|
call_id = EslEventUtil.getCallId(event)
|
|
|
+ device_id = EslEventUtil.getDeviceId(event)
|
|
|
call_info = self.cache.get_call_info(call_id)
|
|
|
- self.logger.info("answer call_id:%s, call_info:%s", call_id, call_info)
|
|
|
+ self.logger.info("answer call_id:%s, device_id:%s, call_info:%s", call_id, device_id, call_info)
|
|
|
if not call_info:
|
|
|
self.logger.info("answer call_info is null, call_id:%s", call_id)
|
|
|
return
|
|
|
|
|
|
registry.CALL_ANSWER_REQUESTS.labels(f"{call_info.bucket_type}").inc()
|
|
|
- device_id = EslEventUtil.getDeviceId(event)
|
|
|
device_info = call_info.device_info_map.get(device_id)
|
|
|
if not device_info:
|
|
|
self.logger.info("answer device_info is null, call_id:%s, call_info:%s", call_id, call_info)
|
|
@@ -50,13 +50,13 @@ class ChannelAnswerHandler(EslEventHandler):
|
|
|
|
|
|
next_command = call_info.next_commands[0] if len(call_info.next_commands) > 0 else None
|
|
|
device_type = DeviceType.get_by_code(device_info.device_type)
|
|
|
- self.logger.info("ChannelAnswerHandler call_id:%s, device_id:%s, device_type:%s, next_command:%s"%(call_id, device_id, device_type, next_command))
|
|
|
+ self.logger.info("answer call_id:%s, device_id:%s, device_type:%s, next_command:%s"%(call_id, device_id, device_type, next_command))
|
|
|
if not next_command:
|
|
|
self.cache.add_call_info(call_info)
|
|
|
return
|
|
|
|
|
|
call_info.next_commands.remove(next_command)
|
|
|
- self.logger.info("ChannelAnswerHandler call_info.answer_time::%s,time:%s", call_info.answer_time, EslEventUtil.getEventDateTimestamp(event))
|
|
|
+ self.logger.info("answer call_info.answer_time::%s,time:%s", call_info.answer_time, EslEventUtil.getEventDateTimestamp(event))
|
|
|
|
|
|
if NextType.NEXT_CALL_OTHER.code == next_command.next_type:
|
|
|
self.call_other(call_info, device_info, event)
|