From cee9a9fd2dba2ea0eca17093ca72e8ee568a5512 Mon Sep 17 00:00:00 2001 From: Simone Scarduzio Date: Fri, 17 Oct 2025 18:43:46 +0200 Subject: [PATCH] higher limits why not --- src/deltaglider/client_operations/stats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deltaglider/client_operations/stats.py b/src/deltaglider/client_operations/stats.py index 9cda050..8c366bd 100644 --- a/src/deltaglider/client_operations/stats.py +++ b/src/deltaglider/client_operations/stats.py @@ -27,8 +27,8 @@ CACHE_VERSION = "1.0" CACHE_PREFIX = ".deltaglider" # Listing limits (prevent runaway scans on gigantic buckets) -QUICK_LIST_LIMIT = 10_000 -SAMPLED_LIST_LIMIT = 10_000 +QUICK_LIST_LIMIT = 60_000 +SAMPLED_LIST_LIMIT = 30_000 # ============================================================================ # Internal Helper Functions