|
@@ -160,6 +160,7 @@ class ChannelHangupHandler(EslEventHandler):
|
|
|
if records:
|
|
|
threading.Thread(target=self._update_record_in_thread, args=(call_info.call_id, records, ",".join(sip_status), ",".join(hangup_cause),call_info.answer_count)).start()
|
|
|
else:
|
|
|
+ threading.Thread(target=self._update_record_in_thread, args=(call_info.call_id, records, ",".join(sip_status), ",".join(hangup_cause),call_info.answer_count)).start()
|
|
|
self.logger.warning("没有找到有效的录音文件")
|
|
|
|
|
|
def _update_record_in_thread(self, call_id, records, sip_status, hangup_cause, answer_count):
|