mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2026-02-12 09:19:34 +00:00
fix exception that appears in logs if session ends before last call status update
This commit is contained in:
@@ -138,7 +138,7 @@ class WsRequestor extends BaseRequestor {
|
|||||||
|
|
||||||
/* simple notifications */
|
/* simple notifications */
|
||||||
if (['call:status', 'verb:status', 'jambonz:error'].includes(type) || reconnectingWithoutAck) {
|
if (['call:status', 'verb:status', 'jambonz:error'].includes(type) || reconnectingWithoutAck) {
|
||||||
this.ws.send(JSON.stringify(obj), () => {
|
this.ws?.send(JSON.stringify(obj), () => {
|
||||||
this.logger.debug({obj}, `WsRequestor:request websocket: sent (${url})`);
|
this.logger.debug({obj}, `WsRequestor:request websocket: sent (${url})`);
|
||||||
sendQueuedMsgs();
|
sendQueuedMsgs();
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ const getJSON = bent('json')
|
|||||||
const clearModule = require('clear-module');
|
const clearModule = require('clear-module');
|
||||||
const {provisionCallHook} = require('./utils')
|
const {provisionCallHook} = require('./utils')
|
||||||
|
|
||||||
|
const sleepFor = (ms) => new Promise((r) => setTimeout(r, ms));
|
||||||
|
|
||||||
process.on('unhandledRejection', (reason, p) => {
|
process.on('unhandledRejection', (reason, p) => {
|
||||||
console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
|
console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
|
||||||
});
|
});
|
||||||
@@ -47,6 +49,7 @@ test('\'dial-phone\'', async(t) => {
|
|||||||
|
|
||||||
// THEN
|
// THEN
|
||||||
const p = sippUac('uas-dial.xml', '172.38.0.10', undefined, undefined, 2);
|
const p = sippUac('uas-dial.xml', '172.38.0.10', undefined, undefined, 2);
|
||||||
|
await sleepFor(1000);
|
||||||
|
|
||||||
let account_sid = '622f62e4-303a-49f2-bbe0-eb1e1714e37a';
|
let account_sid = '622f62e4-303a-49f2-bbe0-eb1e1714e37a';
|
||||||
let post = bent('http://127.0.0.1:3000/', 'POST', 'json', 201);
|
let post = bent('http://127.0.0.1:3000/', 'POST', 'json', 201);
|
||||||
@@ -84,7 +87,7 @@ test('\'dial-sip\'', async(t) => {
|
|||||||
try {
|
try {
|
||||||
await connect(srf);
|
await connect(srf);
|
||||||
// wait for fs connected to drachtio server.
|
// wait for fs connected to drachtio server.
|
||||||
await new Promise(r => setTimeout(r, 1000));
|
await sleepFor(1000);
|
||||||
// GIVEN
|
// GIVEN
|
||||||
const from = "dial_sip";
|
const from = "dial_sip";
|
||||||
let verbs = [
|
let verbs = [
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ services:
|
|||||||
ipv4_address: 172.38.0.7
|
ipv4_address: 172.38.0.7
|
||||||
|
|
||||||
drachtio:
|
drachtio:
|
||||||
image: drachtio/drachtio-server:latest
|
image: drachtio/drachtio-server:0.8.22
|
||||||
restart: always
|
restart: always
|
||||||
command: drachtio --contact "sip:*;transport=udp" --mtu 4096 --address 0.0.0.0 --port 9022
|
command: drachtio --contact "sip:*;transport=udp" --mtu 4096 --address 0.0.0.0 --port 9022
|
||||||
ports:
|
ports:
|
||||||
@@ -57,7 +57,7 @@ services:
|
|||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
|
||||||
freeswitch:
|
freeswitch:
|
||||||
image: drachtio/drachtio-freeswitch-mrf:0.4.18
|
image: drachtio/drachtio-freeswitch-mrf:0.4.33
|
||||||
restart: always
|
restart: always
|
||||||
command: freeswitch --rtp-range-start 20000 --rtp-range-end 20100
|
command: freeswitch --rtp-range-start 20000 --rtp-range-end 20100
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Reference in New Issue
Block a user