From 8d4502551ae11594e96af9ea971ca229f02e9d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Korina=20=C5=A0imi=C4=8Devi=C4=87?= Date: Mon, 2 Dec 2024 15:14:47 +0100 Subject: [PATCH] Fix example Summary: related to T13767 Reviewers: iljazovic Reviewed By: iljazovic Subscribers: miljen Differential Revision: https://repo.mireo.local/D32565 --- example/hello_world_over_tcp.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/example/hello_world_over_tcp.cpp b/example/hello_world_over_tcp.cpp index 891a643..0c3808d 100644 --- a/example/hello_world_over_tcp.cpp +++ b/example/hello_world_over_tcp.cpp @@ -20,10 +20,7 @@ int main() { boost::asio::io_context ioc; // Construct the Client with ``__TCP_SOCKET__`` as the underlying stream. - //async_mqtt5::mqtt_client client(ioc); - async_mqtt5::mqtt_client client( - ioc, {} /* tls_context */, async_mqtt5::logger(async_mqtt5::log_level::debug) - ); + async_mqtt5::mqtt_client client(ioc); //] //[configure_tcp_client