changeset 8474:a24661b372a1 HEAD

Auth workers: Use the correct lookup timeout.
author Timo Sirainen <tss@iki.fi>
date Fri, 21 Nov 2008 22:40:03 +0200
parents 81bc28227b6c
children b64fb26e3b6f
files src/auth/auth-worker-server.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/auth/auth-worker-server.c	Fri Nov 21 21:29:44 2008 +0200
+++ b/src/auth/auth-worker-server.c	Fri Nov 21 22:40:03 2008 +0200
@@ -343,7 +343,7 @@
 
 	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--;
 	}