From 2e2c6a1a6fb05b17da34c83fadb80ecfb0b6fcfc Mon Sep 17 00:00:00 2001 From: Anthony D'Atri Date: Tue, 10 Jun 2025 13:57:16 -0400 Subject: [PATCH] src/crimson: Improve message Signed-off-by: Anthony D'Atri --- monitoring/ceph-mixin/dashboards_out/ceph-cluster-advanced.json | 2 +- src/crimson/admin/pg_commands.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/monitoring/ceph-mixin/dashboards_out/ceph-cluster-advanced.json b/monitoring/ceph-mixin/dashboards_out/ceph-cluster-advanced.json index a31cd5ec3f5b..da2f676b202f 100644 --- a/monitoring/ceph-mixin/dashboards_out/ceph-cluster-advanced.json +++ b/monitoring/ceph-mixin/dashboards_out/ceph-cluster-advanced.json @@ -2232,7 +2232,7 @@ "step": 200 } ], - "title": "RADOS Object Count", + "title": "OSD Type Count", "type": "timeseries" }, { diff --git a/src/crimson/admin/pg_commands.cc b/src/crimson/admin/pg_commands.cc index 440c7a383ff7..68a622e1c452 100644 --- a/src/crimson/admin/pg_commands.cc +++ b/src/crimson/admin/pg_commands.cc @@ -68,7 +68,7 @@ public: ](auto &&pg) mutable { if (!pg) { return seastar::make_ready_future(tell_result_t{ - -ENOENT, fmt::format("i don't have pgid '{}'", spg_id)}); + -ENOENT, fmt::format("don't have pgid '{}'", spg_id)}); } if (!pg->is_primary()) { return seastar::make_ready_future(tell_result_t{ -- 2.47.3