|
@@ -21,7 +21,7 @@ class ChannelParkHandler(EslEventHandler):
|
|
|
def handle(self, address, event, coreUUID):
|
|
|
# self.logger.info("ChannelParkHandler, event=%s", json.loads(event.serialize('json')))
|
|
|
call_id = getCallId(event)
|
|
|
- device_id = getUniqueId(event)
|
|
|
+ device_id = getDeviceId(event)
|
|
|
need_hold_music = getVariableNeedHoldMusic(event)
|
|
|
self.logger.info("park播放等待音标识 callId: %s deviceId: %s needHoldMusic:%s"%(call_id,device_id,need_hold_music))
|
|
|
if need_hold_music:
|
|
@@ -45,7 +45,7 @@ class ChannelParkHandler(EslEventHandler):
|
|
|
|
|
|
device_info = call_info.device_info_map.get(device_id)
|
|
|
if not device_info:
|
|
|
- self.logger.info('CHANNEL_PARK deviceInfo is null, call_id=%s, call_info=%s' % (call_id, call_info))
|
|
|
+ self.logger.info('CHANNEL_PARK deviceInfo is null, call_id=%s, device_id=%s, call_info=%s' % (call_id, device_id, call_info))
|
|
|
return
|
|
|
|
|
|
hold = self.cache.get_need_play_hold_music(call_id)
|