diff --git a/BitFaster.Caching/Lru/ConcurrentLruCore.cs b/BitFaster.Caching/Lru/ConcurrentLruCore.cs index 5e4f8fe8..71990e90 100644 --- a/BitFaster.Caching/Lru/ConcurrentLruCore.cs +++ b/BitFaster.Caching/Lru/ConcurrentLruCore.cs @@ -584,7 +584,7 @@ private void LastWarmToCold() { Interlocked.Decrement(ref this.counter.warm); - if (this.hotQueue.TryDequeue(out var item)) + if (this.warmQueue.TryDequeue(out var item)) { this.Move(item, ItemDestination.Cold, ItemRemovedReason.Evicted); }