File tree 1 file changed +0
-5
lines changed
libs/providers/go-feature-flag/src/lib
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -35,17 +35,12 @@ export class GoFeatureFlagProvider implements Provider {
35
35
private readonly endpoint : string ;
36
36
// timeout in millisecond before we consider the request as a failure
37
37
private readonly timeout : number ;
38
-
39
-
40
38
// cache contains the local cache used in the provider to avoid calling the relay-proxy for every evaluation
41
39
private readonly cache ?: LRUCache < string , ResolutionDetails < any > > ;
42
-
43
-
44
40
// bgSchedulerId contains the id of the setInterval that is running.
45
41
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
46
42
// @ts -ignore
47
43
private bgScheduler ?: NodeJS . Timer ;
48
-
49
44
// dataCollectorBuffer contains all the FeatureEvents that we need to send to the relay-proxy for data collection.
50
45
private dataCollectorBuffer ?: FeatureEvent < any > [ ] ;
51
46
// dataCollectorMetadata are the metadata used when calling the data collector endpoint
You can’t perform that action at this time.
0 commit comments