Skip to content

Commit c55e3ab

Browse files
authored
[Fabric-Sync] Adjust the Subscribe Max Interval to align with test spec (project-chip#36806)
1 parent f3ebc14 commit c55e3ab

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

examples/fabric-sync/admin/BridgeSubscription.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace admin {
2828
namespace {
2929

3030
constexpr uint16_t kSubscribeMinInterval = 0;
31-
constexpr uint16_t kSubscribeMaxInterval = 60;
31+
constexpr uint16_t kSubscribeMaxInterval = 30;
3232

3333
void OnDeviceConnectedWrapper(void * context, Messaging::ExchangeManager & exchangeMgr, const SessionHandle & sessionHandle)
3434
{

examples/fabric-sync/admin/DeviceSubscription.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ namespace admin {
3232

3333
namespace {
3434

35+
constexpr uint16_t kSubscribeMinInterval = 0;
36+
constexpr uint16_t kSubscribeMaxInterval = 10;
37+
3538
void OnDeviceConnectedWrapper(void * context, Messaging::ExchangeManager & exchangeMgr, const SessionHandle & sessionHandle)
3639
{
3740
reinterpret_cast<DeviceSubscription *>(context)->OnDeviceConnected(exchangeMgr, sessionHandle);
@@ -160,7 +163,9 @@ void DeviceSubscription::OnDeviceConnected(Messaging::ExchangeManager & exchange
160163

161164
readParams.mpAttributePathParamsList = readPaths;
162165
readParams.mAttributePathParamsListSize = 1;
163-
readParams.mMaxIntervalCeilingSeconds = 5 * 60;
166+
readParams.mMinIntervalFloorSeconds = kSubscribeMinInterval;
167+
readParams.mMaxIntervalCeilingSeconds = kSubscribeMaxInterval;
168+
readParams.mKeepSubscriptions = true;
164169

165170
CHIP_ERROR err = mClient->SendRequest(readParams);
166171

0 commit comments

Comments
 (0)