diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2014-07-16 15:11:35 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2014-07-16 15:11:35 +1000 |
commit | 13a31fdef0131700ae35755d5c76c5a5de33dad7 (patch) | |
tree | e0a03a7b6291566695c7197e05a7f7d216a6c582 /src/btree/bt_evict.c | |
parent | 489f4767b99643b27a5bce5b4b6131dfd04d5991 (diff) | |
download | mongo-13a31fdef0131700ae35755d5c76c5a5de33dad7.tar.gz |
Have LSM clear the bulk_load_ok flag for the primary, otherwise the btree layer will override the "no eviction" flag.
Diffstat (limited to 'src/btree/bt_evict.c')
-rw-r--r-- | src/btree/bt_evict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btree/bt_evict.c b/src/btree/bt_evict.c index ff0dda9a187..69ed74fd0a7 100644 --- a/src/btree/bt_evict.c +++ b/src/btree/bt_evict.c @@ -753,7 +753,7 @@ retry: SLIST_FOREACH(dhandle, &conn->dhlh, l) { continue; cache->evict_file_next = NULL; - /* Skip files (currently) marked as unevictable. */ + /* Skip files that don't allow eviction. */ btree = dhandle->handle; if (F_ISSET(btree, WT_BTREE_NO_EVICTION)) continue; |