From 91dcdd4b41b9d8c56a35489016f39d78c4fec4c8 Mon Sep 17 00:00:00 2001 From: Jeff Schnitter Date: Thu, 13 Nov 2025 21:18:00 -0700 Subject: [PATCH] fix: remove rate limiter initialization log message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed INFO log message that appears on every CLI invocation which could impact applications parsing CLI output. Fixes #167 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- cortexapps_cli/cortex_client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cortexapps_cli/cortex_client.py b/cortexapps_cli/cortex_client.py index 1ace5f7..470b0ee 100644 --- a/cortexapps_cli/cortex_client.py +++ b/cortexapps_cli/cortex_client.py @@ -85,7 +85,6 @@ def __init__(self, api_key, tenant, numeric_level, base_url='https://api.getcort # Client-side rate limiter (default: 1000 req/min = 16.67 req/sec) # Allows bursting up to 50 requests, then enforces rate limit self.rate_limiter = TokenBucket(rate=rate_limit/60.0, capacity=50) - self.logger.info(f"Rate limiter initialized: {rate_limit} req/min (burst: 50)") # Create a session with connection pooling for better performance self.session = requests.Session()