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:
parent
fab0f97404
commit
3ed4aeba5c
@ -134,7 +134,7 @@ exports[`should create default config 1`] = `
|
||||
"preRouterHook": undefined,
|
||||
"prometheusApi": undefined,
|
||||
"secureHeaders": false,
|
||||
"segmentValuesLimit": 100,
|
||||
"segmentValuesLimit": 1000,
|
||||
"server": {
|
||||
"baseUriPath": "",
|
||||
"cdnPrefix": undefined,
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user