瀏覽代碼

dispatcher: Fixed default values for options probing_threshold and inactive_probing_threshold, setting them from 3 to 1

alezzandro 10 年之前
父節點
當前提交
f6744a8e3c
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      modules/dispatcher/config.c

+ 2 - 2
modules/dispatcher/config.c

@@ -31,8 +31,8 @@
 #include "config.h"
 
 struct cfg_group_dispatcher	default_dispatcher_cfg = {
-		3,	/* Probing threshold */	
-		3,      /* Inactive threshold */
+		1,	/* Probing threshold */	
+		1,      /* Inactive threshold */
 		{0,0}	/* reply codes */
 	    };