Explorar el Código

Don't check threshold > load_limit

Serj Kalichev hace 7 años
padre
commit
dba24e60d0
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      birq.c

+ 2 - 1
birq.c

@@ -110,10 +110,11 @@ int main(int argc, char **argv)
 	}
 
 	/* Validate threshold and load limit */
-	if (opts->load_limit > opts->threshold) {
+/*	if (opts->load_limit > opts->threshold) {
 		fprintf(stderr, "Error: The load limit is greater than threshold.\n");
 		goto err;
 	}
+*/
 
 	/* Initialize syslog */
 	openlog(argv[0], LOG_CONS, opts->log_facility);