File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/core/decision_service Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ import { OptimizelyError } from '../../error/optimizly_error';
78
78
import { CmabService } from './cmab/cmab_service' ;
79
79
import { Maybe , OpType , OpValue } from '../../utils/type' ;
80
80
import { Value } from '../../utils/promise/operation_value' ;
81
- import { holdout } from '../../feature_toggle' ;
81
+ import * as featureToggle from '../../feature_toggle' ;
82
82
83
83
export const EXPERIMENT_NOT_RUNNING = 'Experiment %s is not running.' ;
84
84
export const RETURNING_STORED_VARIATION =
@@ -941,7 +941,7 @@ export class DecisionService {
941
941
reasons : decideReasons ,
942
942
} ) ;
943
943
}
944
- if ( holdout ( ) ) {
944
+ if ( featureToggle . holdout ( ) ) {
945
945
const holdouts = getHoldoutsForFlag ( configObj , feature . key ) ;
946
946
947
947
for ( const holdout of holdouts ) {
You can’t perform that action at this time.
0 commit comments