diff options
author | Yann Ylavic <ylavic@apache.org> | 2023-06-20 17:59:38 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2023-06-20 17:59:38 +0200 |
commit | 162a66654df56423b0e9beb6695883f99753bd1d (patch) | |
tree | 553f52a3e4a1c9a56bdce0dc5fec3ef3ff3efee6 /support | |
parent | ab: More accurate stats for time limited (-t) runs. (diff) | |
download | apache2-162a66654df56423b0e9beb6695883f99753bd1d.tar.xz apache2-162a66654df56423b0e9beb6695883f99753bd1d.zip |
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
Diffstat (limited to 'support')
-rw-r--r-- | support/ab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/ab.c b/support/ab.c index 2ff3187832..087cf8a179 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 ---------------------------- */ |