Skip to content

Commit

Permalink
fix(mdns): increase the time for the query_mdns_host test
Browse files Browse the repository at this point in the history
  • Loading branch information
wqx6 committed Dec 5, 2023
1 parent ba002a9 commit eea69ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static void query_mdns_host(const char *host_name)
struct esp_ip4_addr addr;
addr.addr = 0;

esp_err_t err = mdns_query_a(host_name, 2000, &addr);
esp_err_t err = mdns_query_a(host_name, 4000, &addr);
if (err) {
if (err == ESP_ERR_NOT_FOUND) {
ESP_LOGW(TAG, "%s: Host was not found!", esp_err_to_name(err));
Expand Down

0 comments on commit eea69ed

Please sign in to comment.