|
@@ -34,11 +34,17 @@ class ChannelHangupHandler(EslEventHandler):
|
|
# self.logger.info(json.loads(event.serialize('json')))
|
|
# self.logger.info(json.loads(event.serialize('json')))
|
|
try:
|
|
try:
|
|
call_id = EslEventUtil.getCallId(event)
|
|
call_id = EslEventUtil.getCallId(event)
|
|
|
|
+ self.logger.info('call_id is %s', call_id)
|
|
|
|
+ if not call_id:
|
|
|
|
+ other_leg_device_id = event.getHeader("variable_bridge_uuid")
|
|
|
|
+ call_id = self.cache.get_call_id_by_device_id(other_leg_device_id)
|
|
|
|
+
|
|
self.logger.info('call_id is %s', call_id)
|
|
self.logger.info('call_id is %s', call_id)
|
|
if not call_id:
|
|
if not call_id:
|
|
self.release(event)
|
|
self.release(event)
|
|
self.logger.info("call_id is null, event=%s", json.loads(event.serialize('json')))
|
|
self.logger.info("call_id is null, event=%s", json.loads(event.serialize('json')))
|
|
return
|
|
return
|
|
|
|
+
|
|
call_info = self.cache.get_call_info(call_id)
|
|
call_info = self.cache.get_call_info(call_id)
|
|
self.logger.info('call_info is %s', call_info)
|
|
self.logger.info('call_info is %s', call_info)
|
|
if not call_info:
|
|
if not call_info:
|