From 1c29b8603005b59895f60010762cbe048b749bf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Korina=20=C5=A0imi=C4=8Devi=C4=87?= Date: Mon, 19 Feb 2024 14:11:38 +0100 Subject: [PATCH] Use basic_channel instead of basic_concurrent_channel Summary: related to T11798 Reviewers: ivica Reviewed By: ivica Subscribers: miljen, iljazovic Differential Revision: https://repo.mireo.local/D28061 --- include/async_mqtt5/impl/client_service.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/async_mqtt5/impl/client_service.hpp b/include/async_mqtt5/impl/client_service.hpp index f03f3bb..9baa9d7 100644 --- a/include/async_mqtt5/impl/client_service.hpp +++ b/include/async_mqtt5/impl/client_service.hpp @@ -4,7 +4,7 @@ #include #include -#include +#include #include #include @@ -211,7 +211,7 @@ public: using executor_type = typename stream_type::executor_type; private: using tls_context_type = TlsContext; - using receive_channel = asio::experimental::basic_concurrent_channel< + using receive_channel = asio::experimental::basic_channel< executor_type, channel_traits<>, void (error_code, std::string, std::string, publish_props)