Skip to content

Commit

Permalink
chore: remove unused feature flag for webhooks name logging (#7968)
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek authored Aug 22, 2024
1 parent 6a0dd6f commit 0070091
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/lib/__snapshots__/create-config.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ exports[`should create default config 1`] = `
"useMemoizedActiveTokens": false,
"useProjectReadModel": false,
"userAccessUIEnabled": false,
"webhookServiceNameLogging": false,
},
"externalResolver": {
"getVariant": [Function],
Expand Down
5 changes: 0 additions & 5 deletions src/lib/types/experimental.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export type IFlagKey =
| 'archiveProjects'
| 'projectListImprovements'
| 'useProjectReadModel'
| 'webhookServiceNameLogging'
| 'addonUsageMetrics'
| 'timeAgoRefactor';

Expand Down Expand Up @@ -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,
Expand Down
1 change: 0 additions & 1 deletion src/server-dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ process.nextTick(async () => {
newEventSearch: true,
projectListImprovements: true,
useProjectReadModel: true,
webhookServiceNameLogging: true,
addonUsageMetrics: true,
timeAgoRefactor: true,
},
Expand Down

0 comments on commit 0070091

Please sign in to comment.