We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8022a5 commit 3c27ed4Copy full SHA for 3c27ed4
packages/grpc-js/src/load-balancer-outlier-detection.ts
@@ -38,7 +38,7 @@ function trace(text: string): void {
38
39
const TYPE_NAME = 'outlier_detection';
40
41
-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';
42
43
export interface SuccessRateEjectionConfig {
44
readonly stdev_factor: number;
0 commit comments