From dddff6e20ced39bc40f101cdf6b6d2fdb4ca3440 Mon Sep 17 00:00:00 2001 From: Elena Anyusheva Date: Thu, 28 Jul 2022 14:38:13 +0200 Subject: [PATCH] cloud_storage: fix typo in log --- src/v/cloud_storage/remote_partition.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/v/cloud_storage/remote_partition.cc b/src/v/cloud_storage/remote_partition.cc index 8684572e68ab..54cb5529d535 100644 --- a/src/v/cloud_storage/remote_partition.cc +++ b/src/v/cloud_storage/remote_partition.cc @@ -544,10 +544,10 @@ remote_partition::aborted_transactions(offset_range offsets) { "found {} aborted transactions for {}-{} offset range ({}-{} before " "offset translaction)", result.size(), - offsets.begin_rp, offsets.begin, - offsets.end_rp, - offsets.end); + offsets.end, + offsets.begin_rp, + offsets.end_rp); co_return result; }