From: Marko Kreen Date: Fri, 12 Feb 2010 19:13:07 +0000 (+0000) Subject: log message: statement timeout -> query timeout, to match config var X-Git-Tag: pgbouncer_1_3_2~2 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=refs%2Fheads%2Forigin;p=pgbouncer.git log message: statement timeout -> query timeout, to match config var --- diff --git a/src/janitor.c b/src/janitor.c index 2e6ece0..b37d028 100644 --- a/src/janitor.c +++ b/src/janitor.c @@ -459,7 +459,7 @@ static void pool_server_maint(PgPool *pool) continue; age = now - server->link->request_time; if (age > cf_query_timeout) - disconnect_server(server, true, "statement timeout"); + disconnect_server(server, true, "query timeout"); } }