BUILD: config: also set DEF_MAX_THREADS_PER_GROUP when not using threads
Some checks are pending
Contrib / admin/halog/ (push) Waiting to run
Contrib / dev/flags/ (push) Waiting to run
Contrib / dev/haring/ (push) Waiting to run
Contrib / dev/hpack/ (push) Waiting to run
Contrib / dev/poll/ (push) Waiting to run
VTest / Generate Build Matrix (push) Waiting to run
VTest / (push) Blocked by required conditions
Windows / Windows, gcc, all features (push) Waiting to run

The single-threaded build is currently broken in development since commit
0af603f46f ("MEDIUM: threads: change the default max-threads-per-group
value to 16") because it doesn't set the default for the non-threaded
build. Let's set it to 1.

No backport is needed.
This commit is contained in:
Willy Tarreau 2026-04-21 14:49:26 +02:00
parent 40042afc13
commit f4f733db18

View file

@ -34,6 +34,7 @@
#define MAX_TGROUPS 1
#define MAX_THREADS_PER_GROUP 1
#define DEF_MAX_THREADS_PER_GROUP 1
#else