BUILD: config: also set DEF_MAX_THREADS_PER_GROUP when not using threads

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