Skip to content

Commit

Permalink
grpc-js: Enable outlier detection by default
Browse files Browse the repository at this point in the history
  • Loading branch information
murgatroid99 committed Aug 29, 2022
1 parent 3f71020 commit c323369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/grpc-js/src/load-balancer-outlier-detection.ts
Expand Up @@ -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;
Expand Down

0 comments on commit c323369

Please sign in to comment.