Skip to content

Commit

Permalink
kazoo: set proper ranking for consumer workers
Browse files Browse the repository at this point in the history
(cherry picked from commit 744e898)
  • Loading branch information
lazedo committed Feb 7, 2017
1 parent a321025 commit 8a6c0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/kazoo/kazoo.c
Expand Up @@ -389,7 +389,7 @@ static int mod_child_init(int rank)
*/

for(i=0; i < dbk_consumer_workers; i++) {
pid=fork_process(i+1, "AMQP Consumer Worker", 1);
pid=fork_process(PROC_NOCHLDINIT, "AMQP Consumer Worker", 1);
if (pid<0)
return -1; /* error */
if(pid==0){
Expand Down

0 comments on commit 8a6c0e2

Please sign in to comment.