Fix debug print to handle URL in internal testing scenarios as well

This commit is contained in:
Mahavir Jain 2021-12-14 14:29:02 +05:30
parent 53b0263342
commit 0054732991

View File

@ -72,7 +72,7 @@ esp_err_t _http_event_handler(esp_http_client_event_t *evt)
void simple_ota_example_task(void *pvParameter)
{
ESP_LOGI(TAG, "Starting OTA example. Attempting to download update from %s", CONFIG_EXAMPLE_FIRMWARE_UPGRADE_URL);
ESP_LOGI(TAG, "Starting OTA example");
#ifdef CONFIG_EXAMPLE_FIRMWARE_UPGRADE_BIND_IF
esp_netif_t *netif = get_example_netif_from_desc(bind_interface_name);
if (netif == NULL) {
@ -111,6 +111,7 @@ void simple_ota_example_task(void *pvParameter)
config.skip_cert_common_name_check = true;
#endif
ESP_LOGI(TAG, "Attempting to download update from %s", config.url);
esp_err_t ret = esp_https_ota(&config);
if (ret == ESP_OK) {
esp_restart();