From 8c357f8d7aadb3080c1c398e27bba2be90f9b56b Mon Sep 17 00:00:00 2001 From: "hrushikesh.bhosale" Date: Thu, 19 Feb 2026 16:19:14 +0530 Subject: [PATCH] fix(https_request): Fixed CI failure for https_request example - Enabled chachapoly ciphersuite from menuconfig, required for howmyssl URL --- examples/protocols/https_request/sdkconfig.defaults | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/protocols/https_request/sdkconfig.defaults b/examples/protocols/https_request/sdkconfig.defaults index ec3edfc8b9..88cd8d09e7 100644 --- a/examples/protocols/https_request/sdkconfig.defaults +++ b/examples/protocols/https_request/sdkconfig.defaults @@ -1,3 +1,5 @@ CONFIG_MBEDTLS_HAVE_TIME_DATE=y CONFIG_LWIP_SNTP_MAX_SERVERS=2 CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y +CONFIG_MBEDTLS_CHACHA20_C=y +CONFIG_MBEDTLS_CHACHAPOLY_C=y