1
0
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:
Tymoteusz Czech 2025-07-07 10:41:58 +02:00 committed by GitHub
parent 0247561f9d
commit 965e817d79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,6 +56,7 @@ export type IFlagKey =
| 'edgeObservability'
| 'reportUnknownFlags'
| 'lifecycleMetrics'
| 'healthToTechDebt'
| 'customMetrics'
| 'impactMetrics'
| 'createFlagDialogCache'
@ -267,6 +268,10 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_LIFECYCLE_METRICS,
false,
),
healthToTechDebt: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_HEALTH_TO_TECH_DEBT,
false,
),
createFlagDialogCache: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_CREATE_FLAG_DIALOG_CACHE,
false,