|
@@ -160,7 +160,7 @@ class ChannelHangupHandler(EslEventHandler):
|
|
|
if value.device_type == DeviceType.AGENT.code :
|
|
|
agent_name = value.agent_key
|
|
|
self.logger.info("get_call_info_record: %s,agent_name:%s", records, agent_name)
|
|
|
- threading.Thread(target=self._update_record_in_thread, args=(call_info.call_id, list(set(records)), ",".join(sip_status), ",".join(hangup_cause), agent_name)).start()
|
|
|
+ threading.Thread(target=self._update_record_in_thread, args=(call_info.call_id, list(dict.fromkeys(records)), ",".join(sip_status), ",".join(hangup_cause), agent_name)).start()
|
|
|
|
|
|
def update_name(self,call_id, agent_name):
|
|
|
try:
|