]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/DaemonServer: fixed mistype for mgr_osd_messages 63344/head
authorKonstantin Shalygin <k0ste@k0ste.ru>
Thu, 5 Dec 2024 09:23:37 +0000 (12:23 +0300)
committerKonstantin Shalygin <k0ste@k0ste.ru>
Fri, 21 Nov 2025 12:33:43 +0000 (19:33 +0700)
Triple 's' to double 's', as option name

Signed-off-by: Konstantin Shalygin <k0ste@k0ste.ru>
(cherry picked from commit 618025908cc0389bbf0d237e0b124240e3c13aa4)

src/mgr/DaemonServer.cc

index 34e18b0bf74deee16340a99a4a33a4e393015f41..6cf72c6b7d774558a213a9aeec5a87a9bc6d6b3b 100644 (file)
@@ -85,7 +85,7 @@ DaemonServer::DaemonServer(MonClient *monc_,
                                        g_conf().get_val<uint64_t>("mgr_client_messages"))),
       osd_byte_throttler(new Throttle(g_ceph_context, "mgr_osd_bytes",
                                      g_conf().get_val<Option::size_t>("mgr_osd_bytes"))),
-      osd_msg_throttler(new Throttle(g_ceph_context, "mgr_osd_messsages",
+      osd_msg_throttler(new Throttle(g_ceph_context, "mgr_osd_messages",
                                     g_conf().get_val<uint64_t>("mgr_osd_messages"))),
       mds_byte_throttler(new Throttle(g_ceph_context, "mgr_mds_bytes",
                                      g_conf().get_val<Option::size_t>("mgr_mds_bytes"))),