From a9f591f4e1cb1e364879165250c55cb0f841d64f Mon Sep 17 00:00:00 2001 From: Igor Fedotov Date: Wed, 21 May 2025 11:30:15 +0300 Subject: [PATCH] os/bluestore: rename row names in RocksDBBlueFSVolumeSelector. Signed-off-by: Igor Fedotov --- src/os/bluestore/BlueStore.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index 5e8d245929b0..524aa2a944cc 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -19678,13 +19678,13 @@ void RocksDBBlueFSVolumeSelector::dump(ostream& sout) { sout.width(width); switch (l + LEVEL_FIRST) { case LEVEL_LOG: - sout << "LOG"; break; + sout << "log"; break; case LEVEL_WAL: - sout << "WAL"; break; + sout << "db.wal"; break; case LEVEL_DB: - sout << "DB"; break; + sout << "db"; break; case LEVEL_SLOW: - sout << "SLOW"; break; + sout << "db.slow"; break; case LEVEL_MAX: sout << "TOTAL"; break; } @@ -19705,13 +19705,13 @@ void RocksDBBlueFSVolumeSelector::dump(ostream& sout) { sout.width(width); switch (l + LEVEL_FIRST) { case LEVEL_LOG: - sout << "LOG"; break; + sout << "log"; break; case LEVEL_WAL: - sout << "WAL"; break; + sout << "db.wal"; break; case LEVEL_DB: - sout << "DB"; break; + sout << "db"; break; case LEVEL_SLOW: - sout << "SLOW"; break; + sout << "db.slow"; break; case LEVEL_MAX: sout << "TOTAL"; break; } -- 2.47.3