-
Type: Bug
-
Resolution: Unresolved
-
Priority: Major - P3
-
None
-
Affects Version/s: None
-
Component/s: Not Applicable
-
Storage Engines
-
2
-
StorEng - Defined Pipeline
It seems that we have some dead code here:
/* * If there is a lot of cache pressure, don't let the sleep time get too large. If the cache is * totally full, return. */ pct = 0.0; if (__wt_eviction_needed(session, false, false, &pct)) max = 5; else max = 9; if (pct > 100.0) return;
The pct value should never exceed 100.