From 78f5bab7cff910652f58b8f359416cbbebc4897b Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Fri, 20 Mar 2026 12:27:11 +0300 Subject: [PATCH] table: Add formatter for group_id argument in tablet merge exception message Fixes: SCYLLADB-1432 Signed-off-by: Pavel Emelyanov Closes scylladb/scylladb#29143 --- replica/table.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/replica/table.cc b/replica/table.cc index 21dafc7d7b..3479114743 100644 --- a/replica/table.cc +++ b/replica/table.cc @@ -3417,7 +3417,7 @@ void tablet_storage_group_manager::handle_tablet_merge_completion(locator::effec auto it = _storage_groups.find(group_id); if (it == _storage_groups.end()) { - throw std::runtime_error(format("Unable to find sibling tablet of id for table {}", group_id, table_id)); + throw std::runtime_error(format("Unable to find sibling tablet of id {} for table {}", group_id, table_id)); } auto& sg = it->second; sg->for_each_compaction_group([&new_sg, new_range, new_tid, group_id] (const compaction_group_ptr& cg) {