projects
/
pgbouncer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
663b5af
)
log message: statement timeout -> query timeout, to match config var
origin
author
Marko Kreen
<markokr@gmail.com>
Fri, 12 Feb 2010 19:13:07 +0000
(19:13 +0000)
committer
Marko Kreen
<markokr@gmail.com>
Fri, 12 Feb 2010 19:13:07 +0000
(19:13 +0000)
src/janitor.c
patch
|
blob
|
blame
|
history
diff --git
a/src/janitor.c
b/src/janitor.c
index 2e6ece066431005ac94aba411c2a1e1d27a07a5a..b37d028e859ef24b0853a1219fc8efa34ada948c 100644
(file)
--- 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");
}
}