File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ export default class ConfigurationRequestor {
65
65
createdAt : configResponse . createdAt ,
66
66
format : configResponse . format , } ) ;
67
67
68
- this . setBanditModelVersions (
69
- this . getLoadedBanditModelVersionsFromStore ( this . banditModelConfigurationStore ) ,
68
+ this . banditModelVersions = this . getLoadedBanditModelVersionsFromStore (
69
+ this . banditModelConfigurationStore ,
70
70
) ;
71
71
}
72
72
}
@@ -84,10 +84,6 @@ export default class ConfigurationRequestor {
84
84
) ;
85
85
}
86
86
87
- private setBanditModelVersions ( modelVersions : string [ ] ) {
88
- this . banditModelVersions = modelVersions ;
89
- }
90
-
91
87
private requiresBanditModelConfigurationStoreUpdate (
92
88
currentBanditModelVersions : string [ ] ,
93
89
banditReferences : Record < string , BanditReference > ,
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ export interface IUniversalFlagConfigResponse {
36
36
format : FormatEnum ;
37
37
environment : Environment ;
38
38
flags : Record < string , Flag > ;
39
- bandits : Record < string , BanditVariation [ ] > ;
40
39
banditReferences : Record < string , BanditReference > ;
41
40
}
42
41
You can’t perform that action at this time.
0 commit comments