]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/DaemonServer: fixed mistype for mgr_osd_messages 60963/head
authorKonstantin Shalygin <k0ste@k0ste.ru>
Thu, 5 Dec 2024 09:23:37 +0000 (12:23 +0300)
committerKonstantin Shalygin <k0ste@k0ste.ru>
Sat, 11 Jan 2025 07:24:11 +0000 (10:24 +0300)
Triple 's' to double 's', as option name

Signed-off-by: Konstantin Shalygin <k0ste@k0ste.ru>
src/mgr/DaemonServer.cc

index ca335a744d496e9517129774fb27f73ae8a0901c..57381a93c06f34cd9e36845abe5e908ca1eb1bac 100644 (file)
@@ -80,7 +80,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"))),