diff --git a/Documentation/config-gerrit.txt b/Documentation/config-gerrit.txt index 1d3400e4e7..c67b6288eb 100644 --- a/Documentation/config-gerrit.txt +++ b/Documentation/config-gerrit.txt @@ -604,7 +604,7 @@ caused by the H2 database using too much memory. See <> for a detailed discussion. + Default is unset, using up to half of the available memory. - ++ H2 will persist this value in the database, so to unset explicitly specify 0. + Common unit suffixes of 'k', 'm', or 'g' are supported. @@ -1707,7 +1707,7 @@ the H2 JDBC connection URL, as described link:http://www.h2database.com/html/features.html#cache_settings[here] + Default is unset, using up to half of the available memory. - ++ H2 will persist this value in the database, so to unset explicitly specify 0. + Common unit suffixes of 'k', 'm', or 'g' are supported. @@ -2541,13 +2541,15 @@ org.anyorg.MySecureIPFilter that performs source IP security filtering: Maximum idle time for a connection, which roughly translates to the TCP socket `SO_TIMEOUT`. + -The max idle time is applied: -* When waiting for a new message to be received on a connection -* When waiting for a new message to be sent on a connection -+ This value is interpreted as the maximum time between some progress being made on the connection. So if a single byte is read or written, then the timeout is reset. ++ +The max idle time is applied: ++ +* When waiting for a new message to be received on a connection +* When waiting for a new message to be sent on a connection + + By default, 30 seconds.