Selaa lähdekoodia

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

alezzandro 10 vuotta sitten
vanhempi
commit
f6744a8e3c
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      modules/dispatcher/config.c

+ 2 - 2
modules/dispatcher/config.c

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