grpc-js: Update grpc-js outlier detection check to match xds check

This commit is contained in:
Michael Lumish 2022-09-07 12:39:39 -07:00
parent d8022a557d
commit 3c27ed4c00
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ function trace(text: string): void {
const TYPE_NAME = 'outlier_detection';
const OUTLIER_DETECTION_ENABLED = process.env.GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION !== 'false';
const OUTLIER_DETECTION_ENABLED = (process.env.GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION ?? 'true') === 'true';
export interface SuccessRateEjectionConfig {
readonly stdev_factor: number;