1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

chore: remove unused feature flag for webhooks name logging (#7968)

This commit is contained in:
David Leek 2024-08-22 12:39:52 +02:00 committed by GitHub
parent 6a0dd6fced
commit 00700918c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 7 deletions

View File

@ -152,7 +152,6 @@ exports[`should create default config 1`] = `
"useMemoizedActiveTokens": false,
"useProjectReadModel": false,
"userAccessUIEnabled": false,
"webhookServiceNameLogging": false,
},
"externalResolver": {
"getVariant": [Function],

View File

@ -64,7 +64,6 @@ export type IFlagKey =
| 'archiveProjects'
| 'projectListImprovements'
| 'useProjectReadModel'
| 'webhookServiceNameLogging'
| 'addonUsageMetrics'
| 'timeAgoRefactor';
@ -311,10 +310,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_USE_PROJECT_READ_MODEL,
false,
),
webhookServiceNameLogging: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_WEBHOOK_SERVICE_NAME_LOGGING,
false,
),
addonUsageMetrics: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_ADDON_USAGE_METRICS,
false,

View File

@ -56,7 +56,6 @@ process.nextTick(async () => {
newEventSearch: true,
projectListImprovements: true,
useProjectReadModel: true,
webhookServiceNameLogging: true,
addonUsageMetrics: true,
timeAgoRefactor: true,
},