From 3a5096676647c933a7db106e16ba31c11799d4ac Mon Sep 17 00:00:00 2001 From: Sanjay Ramadugu Date: Mon, 13 Apr 2026 00:22:39 -0400 Subject: [PATCH] fix: remove 10k drawer cap from status display (#603) (#707) --- mempalace/miner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mempalace/miner.py b/mempalace/miner.py index 75ddcd9..22c8af3 100644 --- a/mempalace/miner.py +++ b/mempalace/miner.py @@ -630,7 +630,8 @@ def status(palace_path: str): return # Count by wing and room - r = col.get(limit=10000, include=["metadatas"]) + total = col.count() + r = col.get(limit=total, include=["metadatas"]) if total else {"metadatas": []} metas = r["metadatas"] wing_rooms = defaultdict(lambda: defaultdict(int))