From: Timo Sirainen Date: Thu, 5 Nov 2009 20:00:12 +0000 (-0500) Subject: auth: Drop idling worker processes after 5 minutes, not 30 minutes. X-Git-Tag: 2.0.alpha3~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f7c1f528f3c217f20fc914ff47d51c1d5b8635f;p=thirdparty%2Fdovecot%2Fcore.git auth: Drop idling worker processes after 5 minutes, not 30 minutes. --HG-- branch : HEAD --- diff --git a/src/auth/auth-worker-server.c b/src/auth/auth-worker-server.c index 0bd33340b7..d4ed508820 100644 --- a/src/auth/auth-worker-server.c +++ b/src/auth/auth-worker-server.c @@ -15,7 +15,7 @@ #include #define AUTH_WORKER_LOOKUP_TIMEOUT_SECS 60 -#define AUTH_WORKER_MAX_IDLE_SECS (60*30) +#define AUTH_WORKER_MAX_IDLE_SECS (60*5) #define AUTH_WORKER_DELAY_WARN_SECS 3 #define AUTH_WORKER_DELAY_WARN_MIN_INTERVAL_SECS 300