]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
ab: Increase MAX_CONCURRENCY hard limit (from 20K to 200K).
authorYann Ylavic <ylavic@apache.org>
Tue, 20 Jun 2023 15:59:38 +0000 (15:59 +0000)
committerYann Ylavic <ylavic@apache.org>
Tue, 20 Jun 2023 15:59:38 +0000 (15:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1910518 13f79535-47bb-0310-9956-ffa450edef68

support/ab.c

index 2ff3187832064508b6a334be891b6ce66b65f28a..087cf8a17988d184810cc50e90fe1cc9e63eb182 100644 (file)
@@ -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 ---------------------------- */