From: Yann Ylavic Date: Tue, 20 Jun 2023 15:59:38 +0000 (+0000) Subject: ab: Increase MAX_CONCURRENCY hard limit (from 20K to 200K). X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=162a66654df56423b0e9beb6695883f99753bd1d;p=thirdparty%2Fapache%2Fhttpd.git ab: Increase MAX_CONCURRENCY hard limit (from 20K to 200K). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1910518 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/ab.c b/support/ab.c index 2ff31878320..087cf8a1798 100644 --- a/support/ab.c +++ b/support/ab.c @@ -377,7 +377,7 @@ static void consolidate_metrics(void); #define ap_max(a,b) (((a)>(b))?(a):(b)) #define ap_round_ms(a) ((apr_time_t)((a) + 500)/1000) #define ap_double_ms(a) ((double)(a)/1000.0) -#define MAX_CONCURRENCY 20000 +#define MAX_CONCURRENCY 200000 /* --------------------- GLOBALS ---------------------------- */