removed console.logs

This commit is contained in:
Андрей Бабушкин 2025-03-26 14:20:30 +01:00
parent 420919d00d
commit 36c0104888
3 changed files with 1 additions and 6 deletions

View file

@ -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(),

View file

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

View file

@ -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);