|
@@ -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 = [
|