summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorAlex Gorrod <alexander.gorrod@mongodb.com>2015-07-15 16:53:17 +1000
committerMichael Cahill <michael.cahill@mongodb.com>2015-08-10 15:36:12 +1000
commit8daa0debaacbdb046b690ebcaaf69afc32d4cca3 (patch)
tree361632a7f0222254ac3aa6fac769fb38c6bb7002 /dist
parent48648de31df360e3508776c3b6ed46f27ba56142 (diff)
downloadmongo-8daa0debaacbdb046b690ebcaaf69afc32d4cca3.tar.gz
WT-1930 Add configuration option to disable sweep of old handles
Merge pull request #2044 from wiredtiger/WT-1930 (cherry picked from commit 263c5b7cc8b00dda34d230ee315309f1bd69b6d3)
Diffstat (limited to 'dist')
-rw-r--r--dist/api_data.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/dist/api_data.py b/dist/api_data.py
index 5ad422befb4..215e3f81803 100644
--- a/dist/api_data.py
+++ b/dist/api_data.py
@@ -374,7 +374,8 @@ connection_runtime_config = [
type='category', subconfig=[
Config('close_idle_time', '30', r'''
amount of time in seconds a file handle needs to be idle
- before attempting to close it''', min=1, max=100000),
+ before attempting to close it. A setting of 0 means that idle
+ handles are not closed''', min=0, max=100000),
Config('close_handle_minimum', '250', r'''
number of handles open before the file manager will look for handles
to close'''),