removed console.logs
This commit is contained in:
parent
420919d00d
commit
36c0104888
3 changed files with 1 additions and 6 deletions
|
|
@ -500,7 +500,6 @@ export default class Call {
|
|||
}
|
||||
|
||||
private callAgentsInSession({ agentIds }: { agentIds: string[] }) {
|
||||
console.log('CALLING AGENTS IN SESSION', agentIds);
|
||||
if (agentIds) {
|
||||
const filteredAgentIds = agentIds.filter(
|
||||
(id: string) => id.split('-')[3] !== this.agent.id.toString(),
|
||||
|
|
|
|||
|
|
@ -82,10 +82,6 @@ ingress:
|
|||
add_header 'Access-Control-Allow-Headers' 'sessionid, Content-Type, Authorization' always;
|
||||
add_header 'Access-Control-Max-Age' 1728000;
|
||||
add_header 'Content-Type' 'text/plain charset=UTF-8';
|
||||
add_header 'Content-Length' 0;
|
||||
if ($request_method = 'OPTIONS') {
|
||||
return 204;
|
||||
}
|
||||
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
|
||||
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ export default class Assist {
|
|||
return
|
||||
}
|
||||
if (args[0] !== 'webrtc_call_ice_candidate') {
|
||||
app.debug.log("Socket:", ...args);
|
||||
app.debug.log('Socket:', ...args);
|
||||
};
|
||||
socket.on('close', (e) => {
|
||||
app.debug.warn('Socket closed:', e);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue