# HG changeset patch # User Timo Sirainen # Date 1408525767 -7200 # Node ID 0b86058d4e5ea5f25a704a9f10491331cd63955c # Parent d1d4beff99f77e4d824997adfbb72d565a5a94a7 Several services weren't enforcing their process_limit=1 requirement. diff -r d1d4beff99f7 -r 0b86058d4e5e src/indexer/indexer-settings.c --- a/src/indexer/indexer-settings.c Tue Aug 19 23:53:18 2014 +0200 +++ b/src/indexer/indexer-settings.c Wed Aug 20 11:09:27 2014 +0200 @@ -44,5 +44,7 @@ .unix_listeners = { { &indexer_unix_listeners_buf, sizeof(indexer_unix_listeners[0]) } }, .fifo_listeners = ARRAY_INIT, - .inet_listeners = ARRAY_INIT + .inet_listeners = ARRAY_INIT, + + .process_limit_1 = TRUE }; diff -r d1d4beff99f7 -r 0b86058d4e5e src/ipc/ipc-settings.c --- a/src/ipc/ipc-settings.c Tue Aug 19 23:53:18 2014 +0200 +++ b/src/ipc/ipc-settings.c Wed Aug 20 11:09:27 2014 +0200 @@ -44,5 +44,7 @@ .unix_listeners = { { &ipc_unix_listeners_buf, sizeof(ipc_unix_listeners[0]) } }, .fifo_listeners = ARRAY_INIT, - .inet_listeners = ARRAY_INIT + .inet_listeners = ARRAY_INIT, + + .process_limit_1 = TRUE }; diff -r d1d4beff99f7 -r 0b86058d4e5e src/replication/replicator/replicator-settings.c --- a/src/replication/replicator/replicator-settings.c Tue Aug 19 23:53:18 2014 +0200 +++ b/src/replication/replicator/replicator-settings.c Wed Aug 20 11:09:27 2014 +0200 @@ -43,7 +43,9 @@ .unix_listeners = { { &replicator_unix_listeners_buf, sizeof(replicator_unix_listeners[0]) } }, .fifo_listeners = ARRAY_INIT, - .inet_listeners = ARRAY_INIT + .inet_listeners = ARRAY_INIT, + + .process_limit_1 = TRUE }; #undef DEF diff -r d1d4beff99f7 -r 0b86058d4e5e src/stats/stats-settings.c --- a/src/stats/stats-settings.c Tue Aug 19 23:53:18 2014 +0200 +++ b/src/stats/stats-settings.c Wed Aug 20 11:09:27 2014 +0200 @@ -52,7 +52,9 @@ sizeof(stats_unix_listeners[0]) } }, .fifo_listeners = { { &stats_fifo_listeners_buf, sizeof(stats_fifo_listeners[0]) } }, - .inet_listeners = ARRAY_INIT + .inet_listeners = ARRAY_INIT, + + .process_limit_1 = TRUE }; /* we're kind of kludging here to avoid "stats_" prefix in the struct fields */