|
@@ -162,10 +162,10 @@ class ChannelHangupHandler(EslEventHandler):
|
|
|
def _update_record_in_thread(self, call_id, records, sip_status, hangup_cause, answer_count):
|
|
|
"""用于在独立线程中执行 update_record"""
|
|
|
try:
|
|
|
- status = 0 if answer_count <= 0 else 1
|
|
|
+ # status = 0 if answer_count <= 0 else 1
|
|
|
if len(records) == 0:
|
|
|
self.logger.warning("没有录音文件,直接更新记录: call_id=%s, sip_status=%s, hangup_cause=%s", call_id, sip_status, hangup_cause)
|
|
|
- self.dataHandleServer.update_record(call_id, time_end=datetime.now(), sip_status=sip_status, sip_hangup_cause=hangup_cause, status=status)
|
|
|
+ self.dataHandleServer.update_record(call_id, time_end=datetime.now(), sip_status=sip_status, sip_hangup_cause=hangup_cause)
|
|
|
return
|
|
|
merge_record = self.merge_audio_files(records) if len(records) > 1 else records[0]
|
|
|
# try:
|
|
@@ -175,7 +175,7 @@ class ChannelHangupHandler(EslEventHandler):
|
|
|
# except Exception as chmod_error:
|
|
|
# self.logger.error("设置文件权限失败: %s, error: %s", merge_record, str(chmod_error))
|
|
|
|
|
|
- self.dataHandleServer.update_record(call_id, time_end=datetime.now(), url=merge_record, sip_status=sip_status, sip_hangup_cause=hangup_cause, status=status)
|
|
|
+ self.dataHandleServer.update_record(call_id, time_end=datetime.now(), url=merge_record, sip_status=sip_status, sip_hangup_cause=hangup_cause)
|
|
|
self.logger.info("更新录音记录完成: call_id=%s", call_id)
|
|
|
except Exception as e:
|
|
|
self.logger.error("更新录音记录失败: call_id=%s, error=%s", call_id, str(e))
|