Merge branch 'test/new_mosquitto' into 'master'

fix(mqtt): Fix mqtt tests with local mosquitto

See merge request espressif/esp-idf!35859
This commit is contained in:
David Čermák 2025-01-08 18:19:24 +08:00
commit bca1e958ea
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
## IDF Component Manager Manifest File
dependencies:
espressif/mosquitto:
version: "*"
version: ">=2.0.20"
protocol_examples_common:
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
idf:

View File

@ -316,7 +316,7 @@ void app_main(void)
ESP_ERROR_CHECK(esp_netif_init());
ESP_ERROR_CHECK(esp_event_loop_create_default());
#ifdef CONFIG_EXAMPLE_RUN_LOCAL_BROKER
xTaskCreate(broker_task, "broker", 4096, NULL, 4, NULL);
xTaskCreate(broker_task, "broker", 8192, NULL, 4, NULL);
#endif
ESP_ERROR_CHECK(example_connect());
esp_console_repl_t *repl = NULL;