mirror of
https://github.com/esphome/esphome.git
synced 2026-02-25 21:43:14 -07:00
Don't get stuck forever on a failed component can_proceed (#14267)
This commit is contained in:
@@ -134,7 +134,7 @@ void Application::setup() {
|
||||
this->after_loop_tasks_();
|
||||
this->app_state_ = new_app_state;
|
||||
yield();
|
||||
} while (!component->can_proceed());
|
||||
} while (!component->can_proceed() && !component->is_failed());
|
||||
}
|
||||
|
||||
ESP_LOGI(TAG, "setup() finished successfully!");
|
||||
|
||||
Reference in New Issue
Block a user