From ec3a52f46e69931cf4dd7eb69255c55687721b2e Mon Sep 17 00:00:00 2001 From: yunhanw Date: Wed, 28 Apr 2021 09:50:41 -0700 Subject: [PATCH] descrease clusterinfo pool Summary of Changes: -- Decrease clusterInfo pool from 256 to 8, currently we only have one read handler, and don't need large pool. when we have multiple read or subscription handler on particular device, vendor can override the pool maximum value. --- src/app/InteractionModelEngine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/InteractionModelEngine.h b/src/app/InteractionModelEngine.h index df5b0511c16775..f7475ccf79181f 100644 --- a/src/app/InteractionModelEngine.h +++ b/src/app/InteractionModelEngine.h @@ -52,7 +52,7 @@ #define CHIP_MAX_NUM_READ_CLIENT 1 #define CHIP_MAX_NUM_READ_HANDLER 1 #define CHIP_MAX_REPORTS_IN_FLIGHT 1 -#define IM_SERVER_MAX_NUM_PATH_GROUPS 256 +#define IM_SERVER_MAX_NUM_PATH_GROUPS 8 namespace chip { namespace app {