Skip to content

Commit

Permalink
core: async task - do not close sockets for sip worker processes
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Feb 14, 2022
1 parent 12af4fb commit 5b4506b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/async_task.c
Expand Up @@ -186,7 +186,8 @@ int async_task_child_init(int rank)
}

if(rank>0) {
async_task_close_sockets_parent();
/* no need to close the socket from sip workers */
/* async_task_close_sockets_parent(); */
return 0;
}
if (rank!=PROC_MAIN)
Expand Down

0 comments on commit 5b4506b

Please sign in to comment.