1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-06 11:53:45 +01:00
This commit is contained in:
J. Nick Koston
2025-06-15 20:47:53 -05:00
parent d11860a383
commit dee0608af9

View File

@@ -211,8 +211,8 @@ void HOT Scheduler::call() {
// Not reached timeout yet, done for this call // Not reached timeout yet, done for this call
break; break;
} }
// Don't run on failed or loop-done components // Don't run on failed components
if (item->component != nullptr && item->component->should_skip_loop()) { if (item->component != nullptr && item->component->is_failed()) {
LockGuard guard{this->lock_}; LockGuard guard{this->lock_};
this->pop_raw_(); this->pop_raw_();
continue; continue;