]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: remove extra '>' in spg_t Formatter 55280/head
authorRonen Friedman <rfriedma@redhat.com>
Tue, 23 Jan 2024 14:38:40 +0000 (16:38 +0200)
committerRonen Friedman <rfriedma@redhat.com>
Tue, 23 Jan 2024 14:38:40 +0000 (16:38 +0200)
Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
src/osd/osd_types_fmt.h

index d6d746d295f75de26b22a9030d660a53adc4fae9..e467d5d23044f97beb5bd690388335087d722cf4 100644 (file)
@@ -131,7 +131,7 @@ struct fmt::formatter<spg_t> {
     if (shard_id_t::NO_SHARD == spg.shard.id) {
       return fmt::format_to(ctx.out(), "{}", spg.pgid);
     } else {
-      return fmt::format_to(ctx.out(), "{}s{}>", spg.pgid, spg.shard.id);
+      return fmt::format_to(ctx.out(), "{}s{}", spg.pgid, spg.shard.id);
     }
   }
 };