fix: bump enterprise function limit from 200k to 500k#265
Conversation
Real-world codebase (effect-ts) has 200,437 functions -- just 437 over the old 200,000 cap. Enterprise tier should handle large codebases without arbitrary limits causing friction. 289 tests pass.
|
@DevanshuNEU is attempting to deploy a commit to the Dev's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review infoConfiguration used: Repository UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe enterprise tier's maximum function count per repository was increased from 200,000 to 500,000 in the user limits configuration file. This is a straightforward constant value adjustment with no behavioral changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
@CodeRabbit review |
✅ Actions performedReview triggered.
|
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
Problem
Our limit was an arbitrary number that doesn't accommodate large real-world codebases.
Fix
Enterprise max_functions_per_repo: 200,000 -> 500,000
One line change. 289 tests pass.
Why 500k not unlimited
Enterprise still needs a ceiling to prevent abuse and runaway API costs. 500k covers the largest OSS codebases (Linux kernel ~27M LOC has ~300k functions) with generous headroom.