Skip to content

Commit ad57f01

Browse files
Fix empty report feedback loop (project-chip#35899)
1 parent 33b1f22 commit ad57f01

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/app/reporting/ReportScheduler.h

+1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ class ReportScheduler : public ReadHandler::Observer, public ICDStateObserver
150150
IsEngineRunScheduled()));
151151
}
152152

153+
bool CanStartReporting() const { return mReadHandler->CanStartReporting(); }
153154
bool IsChunkedReport() const { return mReadHandler->IsChunkedReport(); }
154155
bool IsEngineRunScheduled() const { return mFlags.Has(ReadHandlerNodeFlags::EngineRunScheduled); }
155156
void SetEngineRunScheduled(bool aEngineRunScheduled)

src/app/reporting/SynchronizedReportSchedulerImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ void SynchronizedReportSchedulerImpl::TimerFired()
183183
VerifyOrReturn(mNodesPool.Allocated());
184184

185185
mNodesPool.ForEachActiveObject([now, &firedEarly](ReadHandlerNode * node) {
186-
if (node->GetMinTimestamp() <= now)
186+
if (node->GetMinTimestamp() <= now && node->CanStartReporting())
187187
{
188188
// Since this handler can now report whenever it wants to, mark it as allowed to report if any other handler is
189189
// reporting using the CanBeSynced flag.

0 commit comments

Comments
 (0)