projects
/
pgpool2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1d9fe09
)
Fix wrong minimum configuration value for client_idle_limit_in_recovery.
author
Tatsuo Ishii
<ishii@postgresql.org>
Thu, 24 Nov 2016 01:16:51 +0000
(10:16 +0900)
committer
Tatsuo Ishii
<ishii@postgresql.org>
Thu, 24 Nov 2016 01:27:07 +0000
(10:27 +0900)
Per bug #264.
src/config/pool_config_variables.c
patch
|
blob
|
blame
|
history
diff --git
a/src/config/pool_config_variables.c
b/src/config/pool_config_variables.c
index 21a5793171148f0e362d76eb3ba7408fb33588fa..04b0206ad02827c7b90d96af2ca5986caa14af96 100644
(file)
--- a/
src/config/pool_config_variables.c
+++ b/
src/config/pool_config_variables.c
@@
-1415,7
+1415,7
@@
static struct config_int ConfigureNamesInt[] =
},
&g_pool_config.client_idle_limit_in_recovery,
0,
-
0
,INT_MAX,
+
-1
,INT_MAX,
NULL, NULL, NULL
},