File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
export const EXPERIMENTAL_FAULT_INJECTION = ( process . env . GRPC_XDS_EXPERIMENTAL_FAULT_INJECTION ?? 'true' ) === 'true' ;
19
- export const EXPERIMENTAL_OUTLIER_DETECTION = process . env . GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION === 'true' ;
19
+ export const EXPERIMENTAL_OUTLIER_DETECTION = ( process . env . GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION ?? 'true' ) === 'true' ;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ function trace(text: string): void {
38
38
39
39
const TYPE_NAME = 'outlier_detection' ;
40
40
41
- const OUTLIER_DETECTION_ENABLED = process . env . GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION !== 'false ';
41
+ const OUTLIER_DETECTION_ENABLED = ( process . env . GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION ?? 'true' ) === 'true ';
42
42
43
43
export interface SuccessRateEjectionConfig {
44
44
readonly stdev_factor : number ;
You can’t perform that action at this time.
0 commit comments