Browse Source

Don't check threshold > load_limit

Serj Kalichev 6 years ago
parent
commit
dba24e60d0
1 changed files with 2 additions and 1 deletions
  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);