grpc-js: Enable outlier detection by default

This commit is contained in:
Michael Lumish 2022-08-29 15:41:51 -07:00
parent 3f7102084a
commit c323369929

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 === 'true';
const OUTLIER_DETECTION_ENABLED = process.env.GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION !== 'false';
export interface SuccessRateEjectionConfig {
readonly stdev_factor: number;