From: bjordanov Date: Sun, 9 Oct 2005 10:30:19 +0000 (+0000) Subject: Changed size of start pool to fit one on experimental.conf X-Git-Tag: release_2_0_0_pre1~907 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=bfc08393485ceee642b0b3cd9ab988143de4db43;p=freeradius.git Changed size of start pool to fit one on experimental.conf --- diff --git a/src/modules/rlm_perl/rlm_perl.c b/src/modules/rlm_perl/rlm_perl.c index 718134b..4b849dd 100644 --- a/src/modules/rlm_perl/rlm_perl.c +++ b/src/modules/rlm_perl/rlm_perl.c @@ -169,9 +169,9 @@ static PerlInterpreter *interp = NULL; static const CONF_PARSER pool_conf[] = { { "max_clones", PW_TYPE_INTEGER, offsetof(PERL_POOL, max_clones), NULL, "32"}, - { "start_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL, start_clones), NULL, "5"}, - { "min_spare_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL, min_spare_clones),NULL, "3"}, - { "max_spare_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL,max_spare_clones),NULL, "3"}, + { "start_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL, start_clones), NULL, "32"}, + { "min_spare_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL, min_spare_clones),NULL, "0"}, + { "max_spare_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL,max_spare_clones),NULL, "32"}, { "cleanup_delay",PW_TYPE_INTEGER, offsetof(PERL_POOL,cleanup_delay),NULL, "5"}, { "max_request_per_clone",PW_TYPE_INTEGER, offsetof(PERL_POOL,max_request_per_clone),NULL, "0"}, { NULL, -1, 0, NULL, NULL } /* end the list */