1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-19 03:32:20 +01:00
This commit is contained in:
J. Nick Koston
2025-09-14 09:16:11 -05:00
parent dc8c5a6cb3
commit c1c4fabc28

View File

@@ -576,9 +576,9 @@ void EthernetComponent::start_connect_() {
// This is a programming error, not a transient failure
ESPHL_ERROR_CHECK(err, "esp_netif_create_ip6_linklocal invalid parameters");
} else {
// ESP_FAIL typically means the interface isn't fully up yet
// This is a timing issue that can occur after network interruptions
// We'll retry once we reach CONNECTED state and the interface is stable
// ESP_FAIL means the interface isn't up yet (e.g., cable unplugged, link down)
// This is expected during reconnection attempts after network interruptions
// We'll retry once we reach CONNECTED state and the interface is actually up
ESP_LOGW(TAG, "esp_netif_create_ip6_linklocal failed: %s", esp_err_to_name(err));
// Don't mark component as failed - this is a transient error
}