diff options
author | Michael Cahill <michael.cahill@mongodb.com> | 2015-04-25 13:02:42 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@mongodb.com> | 2015-04-25 13:02:42 +1000 |
commit | 54614a51627afe8c3f17b83271122a29e4726390 (patch) | |
tree | 6a567f01ff1acdc42e2d60e5951c8635ccf02f6f /src/conn | |
parent | 80226f628ca53f9076db8061abaa55dbda1b0674 (diff) | |
download | mongo-54614a51627afe8c3f17b83271122a29e4726390.tar.gz |
Fixes after cherry-picking.
Diffstat (limited to 'src/conn')
-rw-r--r-- | src/conn/conn_sweep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conn/conn_sweep.c b/src/conn/conn_sweep.c index 1c5b8ed372a..46f40a6fefd 100644 --- a/src/conn/conn_sweep.c +++ b/src/conn/conn_sweep.c @@ -212,7 +212,7 @@ __wt_sweep_config(WT_SESSION_IMPL *session, const char *cfg[]) WT_RET(__wt_config_gets(session, cfg, "file_manager.close_handle_minimum", &cval)); - conn->sweep_handles = (u_int)cval.val; + conn->sweep_handles_min = (u_int)cval.val; return (0); } |