From a9ee3f2f7f557adbe5448e4f4fbf71c23fe808b1 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Mon, 7 Apr 2025 14:37:19 -0400 Subject: Implemented the legacy policies and fixed a few bugs --- include/util/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/util/types.h') diff --git a/include/util/types.h b/include/util/types.h index 6e8fd69..c10f7ff 100644 --- a/include/util/types.h +++ b/include/util/types.h @@ -122,9 +122,9 @@ public: size_t reccnt, ReconstructionType type) { if (type == ReconstructionType::Merge) { - m_tasks.push_back({{{source, all_shards_idx}, {target, all_shards_idx}}, target, reccnt}); + m_tasks.push_back({{{source, all_shards_idx}, {target, all_shards_idx}}, target, reccnt, type}); } else { - m_tasks.push_back({{{source, all_shards_idx}}, target, reccnt}); + m_tasks.push_back({{{source, all_shards_idx}}, target, reccnt, type}); } total_reccnt += reccnt; -- cgit v1.2.3