mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
fix: default featureSearchFeedback to false (#6137)
We need to turn it false, because if it is true, it will not get any variants. This solution is hacky, but good for now.
This commit is contained in:
parent
cc060b7a4c
commit
b45f7be680
@ -95,7 +95,7 @@ exports[`should create default config 1`] = `
|
||||
"extendedUsageMetrics": false,
|
||||
"extendedUsageMetricsUI": false,
|
||||
"featureSearchFeedback": {
|
||||
"enabled": true,
|
||||
"enabled": false,
|
||||
"name": "withText",
|
||||
"payload": {
|
||||
"type": "json",
|
||||
|
@ -162,7 +162,7 @@ const flags: IFlags = {
|
||||
name: 'withText',
|
||||
enabled: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_FEATURE_SEARCH_FEEDBACK,
|
||||
true,
|
||||
false,
|
||||
),
|
||||
payload: {
|
||||
type: PayloadType.JSON,
|
||||
|
Loading…
Reference in New Issue
Block a user