774056846 před 4 měsíci
rodič
revize
38f8fdb036

+ 13 - 2
src/core/callcenter/esl/client.py

@@ -323,8 +323,19 @@ class InboundClient:
             var,
             val
         ]
-        command = ' '.join(builder)
-        self.con.bgapi(command, EMPTY)
+        _con = None
+        try:
+            command = ' '.join(builder)
+            _con = ESL.ESLconnection(self.host, self.port, self.password)
+            if _con.connected():
+                print('debugger::set_var, command=%s'%command, flush=True)
+                e = _.bgapi(command, EMPTY)
+                print('debugger::set_var success, arg=%s, event=%s' % (command, e.serialize('json')), flush=True)
+        except:
+            traceback.print_exc()
+        finally:
+            if _con:
+                _con.disconnect()
 
     def multi_set_var(self, uuid, params):
         builder = [

+ 1 - 1
src/core/callcenter/esl/handler/channel_park_handler.py

@@ -46,7 +46,7 @@ class ChannelParkHandler(EslEventHandler):
         device_info = call_info.device_info_map.get(device_id)
         hold = self.cache.get_need_play_hold_music(call_id)
         print('debugger, ChannelParkHandler, hold=%s, device_info=%s' % (hold, device_info), flush=True)
-        if hold and device_info.device_type == DeviceType.CUSTOMER.code:
+        if hold and "false" != hold and device_info.device_type == DeviceType.CUSTOMER.code:
             self.inbound_client.hold_play(device_id, HOLD_MUSIC_PATH)
             self.cache.del_need_play_hold_music(call_id)
             self.inbound_client.set_var(device_id, SIP_HEADER + sipHeaderHoldMusic, "false")