mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-23 13:46:45 +02:00
fix: health to technical debt flag (#10320)
Flag was now working properly because of our flag resolver
This commit is contained in:
parent
0247561f9d
commit
965e817d79
@ -56,6 +56,7 @@ export type IFlagKey =
|
|||||||
| 'edgeObservability'
|
| 'edgeObservability'
|
||||||
| 'reportUnknownFlags'
|
| 'reportUnknownFlags'
|
||||||
| 'lifecycleMetrics'
|
| 'lifecycleMetrics'
|
||||||
|
| 'healthToTechDebt'
|
||||||
| 'customMetrics'
|
| 'customMetrics'
|
||||||
| 'impactMetrics'
|
| 'impactMetrics'
|
||||||
| 'createFlagDialogCache'
|
| 'createFlagDialogCache'
|
||||||
@ -267,6 +268,10 @@ const flags: IFlags = {
|
|||||||
process.env.UNLEASH_EXPERIMENTAL_LIFECYCLE_METRICS,
|
process.env.UNLEASH_EXPERIMENTAL_LIFECYCLE_METRICS,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
|
healthToTechDebt: parseEnvVarBoolean(
|
||||||
|
process.env.UNLEASH_EXPERIMENTAL_HEALTH_TO_TECH_DEBT,
|
||||||
|
false,
|
||||||
|
),
|
||||||
createFlagDialogCache: parseEnvVarBoolean(
|
createFlagDialogCache: parseEnvVarBoolean(
|
||||||
process.env.UNLEASH_EXPERIMENTAL_CREATE_FLAG_DIALOG_CACHE,
|
process.env.UNLEASH_EXPERIMENTAL_CREATE_FLAG_DIALOG_CACHE,
|
||||||
false,
|
false,
|
||||||
|
Loading…
Reference in New Issue
Block a user