1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-09 01:17:06 +02:00

chore: expand default segment limits to 1000 (#3710)

This expands the segment limits to 1000, this should have no impact on
OSS since this feature isn't exposed. This is overridden to 250 in
hosted `pro` instances and 1000 in hosted `enterprise` customers. This
only affects self hosted enterprise instances
This commit is contained in:
Simon Hornby 2023-05-08 14:44:48 +02:00 committed by GitHub
parent fab0f97404
commit 3ed4aeba5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ exports[`should create default config 1`] = `
"preRouterHook": undefined,
"prometheusApi": undefined,
"secureHeaders": false,
"segmentValuesLimit": 100,
"segmentValuesLimit": 1000,
"server": {
"baseUriPath": "",
"cdnPrefix": undefined,

View File

@ -1,2 +1,2 @@
export const DEFAULT_SEGMENT_VALUES_LIMIT = 100;
export const DEFAULT_SEGMENT_VALUES_LIMIT = 1000;
export const DEFAULT_STRATEGY_SEGMENTS_LIMIT = 5;