From 3f7c1f528f3c217f20fc914ff47d51c1d5b8635f Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 5 Nov 2009 15:00:12 -0500 Subject: [PATCH] auth: Drop idling worker processes after 5 minutes, not 30 minutes. --HG-- branch : HEAD --- src/auth/auth-worker-server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3