From 149495256b843bbcef8ff1935c0c5c1a974f6755 Mon Sep 17 00:00:00 2001 From: yunhanw-google Date: Wed, 28 Apr 2021 10:36:53 -0700 Subject: [PATCH] descrease clusterinfo pool (#6353) 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 {