From: Timo Sirainen Date: Fri, 21 Nov 2008 20:40:03 +0000 (+0200) Subject: Auth workers: Use the correct lookup timeout. X-Git-Tag: 1.2.alpha4~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ab008e326eda1ab42dcccbe7c21db459ad58dad;p=thirdparty%2Fdovecot%2Fcore.git Auth workers: Use the correct lookup timeout. --HG-- branch : HEAD --- diff --git a/src/auth/auth-worker-server.c b/src/auth/auth-worker-server.c index 13f033949f..2c0e73c4f5 100644 --- a/src/auth/auth-worker-server.c +++ b/src/auth/auth-worker-server.c @@ -343,7 +343,7 @@ void auth_worker_call(struct auth_request *auth_request, if (conn->request_count == 0) { timeout_remove(&conn->to); - conn->to = timeout_add(AUTH_WORKER_MAX_IDLE_SECS * 1000, + conn->to = timeout_add(AUTH_WORKER_LOOKUP_TIMEOUT_SECS * 1000, auth_worker_call_timeout, conn); idle_count--; }