Skip to content

Commit 0c8f7d8

Browse files
committed
fix: bump enterprise function limit from 200k to 500k
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.
1 parent d6563d1 commit 0c8f7d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/services/user_limits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class TierLimits:
6666
UserTier.ENTERPRISE: TierLimits(
6767
max_repos=None, # Unlimited
6868
max_files_per_repo=50000,
69-
max_functions_per_repo=200000,
69+
max_functions_per_repo=500000,
7070
playground_searches_per_day=None,
7171
max_team_members=None,
7272
priority_indexing=True,

0 commit comments

Comments
 (0)