From df71cc5a7aea31e963a40be9b0989b1aa9490d87 Mon Sep 17 00:00:00 2001 From: Florian Reimold <11774314+FlorianReimold@users.noreply.github.com> Date: Thu, 12 Jan 2023 17:05:44 +0100 Subject: [PATCH] Core Services Bugfix: Service response header now contains the method name again Fixes #937, a bug that was introduced with commit 419d7f33edca6cf4b02c50b8e879981f4043f873 --- ecal/core/src/service/ecal_service_server_impl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ecal/core/src/service/ecal_service_server_impl.cpp b/ecal/core/src/service/ecal_service_server_impl.cpp index 246fe4452f..2fc8680edc 100644 --- a/ecal/core/src/service/ecal_service_server_impl.cpp +++ b/ecal/core/src/service/ecal_service_server_impl.cpp @@ -306,6 +306,7 @@ namespace eCAL // get method SMethod method; auto& request_pb_header = request_pb.header(); + response_pb_mutable_header->set_mname(request_pb_header.mname()); { std::lock_guard lock(m_method_map_sync);