summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/conn/conn_cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/conn/conn_cache.c')
-rw-r--r--src/third_party/wiredtiger/src/conn/conn_cache.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/src/conn/conn_cache.c b/src/third_party/wiredtiger/src/conn/conn_cache.c
index 4337042629c..bf14fcf4914 100644
--- a/src/third_party/wiredtiger/src/conn/conn_cache.c
+++ b/src/third_party/wiredtiger/src/conn/conn_cache.c
@@ -326,7 +326,6 @@ __wt_cache_stats_update(WT_SESSION_IMPL *session)
WT_STAT_SET(session, stats, cache_eviction_state, cache->flags);
WT_STAT_SET(session, stats, cache_eviction_aggressive_set, cache->evict_aggressive_score);
WT_STAT_SET(session, stats, cache_eviction_empty_score, cache->evict_empty_score);
- WT_STAT_SET(session, stats, cache_hs_score, __wt_cache_hs_score(cache));
WT_STAT_SET(session, stats, cache_eviction_active_workers, conn->evict_threads.current_threads);
WT_STAT_SET(
@@ -340,9 +339,6 @@ __wt_cache_stats_update(WT_SESSION_IMPL *session)
WT_STAT_SET(session, stats, cache_eviction_walks_active, cache->walk_session->nhazard);
WT_STAT_SET(session, stats, rec_maximum_seconds, conn->rec_maximum_seconds);
-
- /* TODO: WT-5585 Remove lookaside score statistic after MongoDB switches to an alternative. */
- WT_STAT_SET(session, stats, cache_lookaside_score, 0);
}
/*