From 670a0d8f1902e63803c5297ce533e167be7e675e Mon Sep 17 00:00:00 2001 From: Milan Garnier Date: Fri, 24 Jul 2026 11:36:03 +0200 Subject: [PATCH] fix: bump ZAI_CONFIG_ENTRIES_COUNT_MAX to 400 PR #3997 pushed the real config entry count (~302, incl. per-integration ANALYTICS_ENABLED/ANALYTICS_SAMPLE_RATE aliases) past the compile-time cap of 300, tripping the static assert in ext/configuration.c and breaking every master build since, which also blocked the publish-to-s3 dev release job. --- zend_abstract_interface/config/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zend_abstract_interface/config/config.h b/zend_abstract_interface/config/config.h index d7598cf35fd..351ce0547b3 100644 --- a/zend_abstract_interface/config/config.h +++ b/zend_abstract_interface/config/config.h @@ -18,7 +18,7 @@ typedef uint16_t zai_config_id; #include "config_ini.h" #include "config_stable_file.h" -#define ZAI_CONFIG_ENTRIES_COUNT_MAX 300 +#define ZAI_CONFIG_ENTRIES_COUNT_MAX 400 #define ZAI_CONFIG_NAMES_COUNT_MAX 4 #define ZAI_CONFIG_NAME_BUFSIZ 72