This is an automated email from the ASF dual-hosted git repository.

hulk pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git


The following commit(s) were added to refs/heads/unstable by this push:
     new 8892e1ae4 fix: typo in compaction checker (#2879)
8892e1ae4 is described below

commit 8892e1ae4358a00c3b9fb9ef86307b569a6e473c
Author: Andrea Novellini <[email protected]>
AuthorDate: Tue Apr 15 06:00:51 2025 +0200

    fix: typo in compaction checker (#2879)
---
 src/storage/compaction_checker.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/storage/compaction_checker.cc 
b/src/storage/compaction_checker.cc
index 649f1f231..4473d0f85 100644
--- a/src/storage/compaction_checker.cc
+++ b/src/storage/compaction_checker.cc
@@ -31,7 +31,7 @@ void CompactionChecker::CompactPropagateAndPubSubFiles() {
   compact_opts.change_level = true;
   for (const auto &cf :
        {engine::ColumnFamilyConfigs::PubSubColumnFamily(), 
engine::ColumnFamilyConfigs::PropagateColumnFamily()}) {
-    LOG(INFO) << "[compaction checker] Start the compact the column family: " 
<< cf.Name();
+    LOG(INFO) << "[compaction checker] Start to compact the column family: " 
<< cf.Name();
     auto cf_handle = storage_->GetCFHandle(cf.Id());
     auto s = storage_->GetDB()->CompactRange(compact_opts, cf_handle, nullptr, 
nullptr);
     LOG(INFO) << "[compaction checker] Compact the column family: " << 
cf.Name()

Reply via email to