From: Jos Collin Date: Fri, 19 Dec 2025 13:27:35 +0000 (+0530) Subject: src/test: fixed X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fwip-jcollin-testing-19122025;p=ceph-ci.git src/test: fixed Signed-off-by: Jos Collin --- diff --git a/src/test/msgr/test_msgr.cc b/src/test/msgr/test_msgr.cc index 5a2e55b8832..82ffc01357e 100644 --- a/src/test/msgr/test_msgr.cc +++ b/src/test/msgr/test_msgr.cc @@ -2382,8 +2382,6 @@ TEST_P(MessengerTest, SyntheticInjectTest5) { } TEST_P(MessengerTest, SyntheticInjectTest6) { - uint64_t dispatch_throttle_bytes = g_ceph_context->_conf->ms_dispatch_throttle_bytes; - uint64_t dispatch_throttle_log_interval = g_ceph_context->_conf->ms_dispatch_throttle_log_interval; g_ceph_context->_conf.set_val("ms_dispatch_throttle_bytes", "500"); g_ceph_context->_conf.set_val("ms_dispatch_throttle_log_interval", "5"); SyntheticWorkload test_msg(1, 8, GetParam(), 100, @@ -2400,10 +2398,8 @@ TEST_P(MessengerTest, SyntheticInjectTest6) { test_msg.send_message(); } test_msg.wait_for_done(); - g_ceph_context->_conf.set_val("ms_dispatch_throttle_bytes", - std::to_string(dispatch_throttle_bytes)); - g_ceph_context->_conf.set_val("ms_dispatch_throttle_log_interval", - std::to_string(dispatch_throttle_log_interval)); + g_ceph_context->_conf.set_val("ms_dispatch_throttle_bytes", "104857600"); + g_ceph_context->_conf.set_val("ms_dispatch_throttle_log_interval", "30"); } class MarkdownDispatcher : public Dispatcher {