This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch ignite-17607
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-17607 by this push:
new c7f8797df8 IGNITE-17607 Fix
c7f8797df8 is described below
commit c7f8797df846df44f7659aae00da7cc63e6667db
Author: Igor Sapego <[email protected]>
AuthorDate: Mon Mar 20 19:20:16 2023 +0300
IGNITE-17607 Fix
---
modules/platforms/cpp/ignite/client/compute/compute.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/platforms/cpp/ignite/client/compute/compute.cpp
b/modules/platforms/cpp/ignite/client/compute/compute.cpp
index 75b4c5dc6d..61189b09ac 100644
--- a/modules/platforms/cpp/ignite/client/compute/compute.cpp
+++ b/modules/platforms/cpp/ignite/client/compute/compute.cpp
@@ -62,8 +62,8 @@ void compute::broadcast_async(const std::set<cluster_node>
&nodes, std::string_v
std::mutex m_mutex;
result_type m_res_map;
- ignite_callback<result_type> m_callback;
std::int32_t m_cnt{0};
+ ignite_callback<result_type> m_callback;
};
auto shared_res =
std::make_shared<result_group>(std::int32_t(nodes.size()), std::move(callback));