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:
parent
6a0dd6fced
commit
00700918c8
@ -152,7 +152,6 @@ exports[`should create default config 1`] = `
|
||||
"useMemoizedActiveTokens": false,
|
||||
"useProjectReadModel": false,
|
||||
"userAccessUIEnabled": false,
|
||||
"webhookServiceNameLogging": false,
|
||||
},
|
||||
"externalResolver": {
|
||||
"getVariant": [Function],
|
||||
|
@ -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,
|
||||
|
@ -56,7 +56,6 @@ process.nextTick(async () => {
|
||||
newEventSearch: true,
|
||||
projectListImprovements: true,
|
||||
useProjectReadModel: true,
|
||||
webhookServiceNameLogging: true,
|
||||
addonUsageMetrics: true,
|
||||
timeAgoRefactor: true,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user