|
@@ -217,7 +217,7 @@ class InboundClient:
|
|
self.logger.info("waitingTimeOut 开始播放结束音乐 callId:%s customerDeviceId:%s playFile:%s", call_id,
|
|
self.logger.info("waitingTimeOut 开始播放结束音乐 callId:%s customerDeviceId:%s playFile:%s", call_id,
|
|
device_id, WaitingHangupMusicPath)
|
|
device_id, WaitingHangupMusicPath)
|
|
|
|
|
|
- def make_call_new(self, context: MakeCallContext):
|
|
|
|
|
|
+ def make_call(self, context: MakeCallContext):
|
|
# self.logger.info("拨打测试context:%s", context.__dict__)
|
|
# self.logger.info("拨打测试context:%s", context.__dict__)
|
|
called = context.get_called()
|
|
called = context.get_called()
|
|
params = {'gateway': context.route_gateway_name, 'called': called, 'realm': context.get_realm()}
|
|
params = {'gateway': context.route_gateway_name, 'called': called, 'realm': context.get_realm()}
|
|
@@ -235,7 +235,7 @@ class InboundClient:
|
|
# self.logger.info("拨打测试builder:%s", builder)
|
|
# self.logger.info("拨打测试builder:%s", builder)
|
|
cmd = "".join(builder)
|
|
cmd = "".join(builder)
|
|
self.logger.info(cmd)
|
|
self.logger.info(cmd)
|
|
- self.bgapi(ORIGINATE, arg=cmd, desc="make_call_new")
|
|
|
|
|
|
+ self.bgapi(ORIGINATE, arg=cmd, desc="make_call")
|
|
# self.con.bgapi(ORIGINATE, cmd)
|
|
# self.con.bgapi(ORIGINATE, cmd)
|
|
|
|
|
|
def call_timeout(self, call_id, device_id, timeout):
|
|
def call_timeout(self, call_id, device_id, timeout):
|