1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: remove flagResolver option (#6001)

## About the changes
This option is not referenced in the code

I believe its original intent was to be able to override flagResolver,
but it's currently not being used:

a46f54f48a/src/lib/create-config.ts (L490-L491)

Instead, we're using `experimental`, `flags`, and `externalResolver`


a46f54f48a/src/lib/create-config.ts (L64-L73)


f63581c03a/src/lib/util/flag-resolver.ts (L12-L20)
This commit is contained in:
Gastón Fournier 2024-01-23 13:16:32 +01:00 committed by GitHub
parent f63581c03a
commit db93ab57f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,7 +127,6 @@ export interface IUnleashOptions {
enterpriseVersion?: string; enterpriseVersion?: string;
inlineSegmentConstraints?: boolean; inlineSegmentConstraints?: boolean;
clientFeatureCaching?: Partial<IClientCachingOption>; clientFeatureCaching?: Partial<IClientCachingOption>;
flagResolver?: IFlagResolver;
accessControlMaxAge?: number; accessControlMaxAge?: number;
prometheusApi?: string; prometheusApi?: string;
publicFolder?: string; publicFolder?: string;