Skip to content

Commit

Permalink
ab: Increase MAX_CONCURRENCY hard limit (from 20K to 200K).
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1910518 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
ylavic committed Jun 20, 2023
1 parent 5d22e55 commit 162a666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/ab.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------- */

Expand Down

0 comments on commit 162a666

Please sign in to comment.