Skip to content

Commit 5741d35

Browse files
fix: remove rate limiter initialization log message (#168)
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 <[email protected]>
1 parent 283fc3b commit 5741d35

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

cortexapps_cli/cortex_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ def __init__(self, api_key, tenant, numeric_level, base_url='https://api.getcort
8585
# Client-side rate limiter (default: 1000 req/min = 16.67 req/sec)
8686
# Allows bursting up to 50 requests, then enforces rate limit
8787
self.rate_limiter = TokenBucket(rate=rate_limit/60.0, capacity=50)
88-
self.logger.info(f"Rate limiter initialized: {rate_limit} req/min (burst: 50)")
8988

9089
# Create a session with connection pooling for better performance
9190
self.session = requests.Session()

0 commit comments

Comments
 (0)