From a19b2bff85d1b9dd9fa2b9a39440ef39068f896a Mon Sep 17 00:00:00 2001 From: Jan Mewes Date: Sat, 9 May 2020 11:12:20 +0200 Subject: [PATCH] Document minium value for maxLifetime property (#1579) See https://github.com/jmewes/HikariCP/blob/a51e6a07e856db5f0bce969d83126a0e4dad676a/src/main/java/com/zaxxer/hikari/HikariConfig.java#L1016-L1019 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4cb84af..46da3b73 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ never be retired, only when it is closed will it then be removed. On a connecti basis, minor negative attenuation is applied to avoid mass-extinction in the pool. **We strongly recommend setting this value, and it should be several seconds shorter than any database or infrastructure imposed connection time limit.** A value of 0 indicates no maximum lifetime (infinite lifetime), subject of -course to the ``idleTimeout`` setting. +course to the ``idleTimeout`` setting. The minimum allowed value is 30000ms (30 seconds). *Default: 1800000 (30 minutes)* 🔠``connectionTestQuery``