File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
grpc/src/ugrpc/client/impl Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 11#include < userver/ugrpc/client/impl/client_qos_errors_reporter.hpp>
22
3+ #include < boost/algorithm/string.hpp>
34#include < boost/range/adaptor/transformed.hpp>
45#include < boost/range/irange.hpp>
56
@@ -50,8 +51,13 @@ void ClientQosErrorsReporter::ValidateAndReportClientQosErrors(
5051 method_path,
5152 config_name,
5253 metadata.service_full_name ,
53- boost::irange (static_cast <std::size_t >(0 ), GetMethodsCount (metadata)) |
54- boost::adaptors::transformed ([&](std::size_t i) { return GetMethodFullName (metadata, i); })
54+ boost::algorithm::join (
55+ boost::copy_range<std::vector<std::string>>(
56+ boost::irange (static_cast <std::size_t >(0 ), GetMethodsCount (metadata)) |
57+ boost::adaptors::transformed ([&](std::size_t i) { return GetMethodFullName (metadata, i); })
58+ ),
59+ " , "
60+ )
5561 );
5662 } else {
5763 LOG_WARNING (
You can’t perform that action at this time.
0 commit comments