[BugFix] correct host leaf status check from evicted to backuped (#23537)

This commit is contained in:
Jeongho Shin
2026-04-29 10:26:00 -07:00
committed by GitHub
parent 03147f66b8
commit 530b497a48
+1 -1
View File
@@ -846,7 +846,7 @@ class HiRadixCache(RadixCache):
return
for child in node.children.values():
if child.evicted:
if child.backuped:
if node in self.evictable_host_leaves:
self.evictable_host_leaves.remove(node)
return