]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
src/test: fixed wip-jcollin-testing-19122025
authorJos Collin <jcollin@redhat.com>
Fri, 19 Dec 2025 13:27:35 +0000 (18:57 +0530)
committerJos Collin <jcollin@redhat.com>
Fri, 19 Dec 2025 13:27:35 +0000 (18:57 +0530)
Signed-off-by: Jos Collin <jcollin@redhat.com>
src/test/msgr/test_msgr.cc

index 5a2e55b8832e5c784db8b4ac6abf62b70aab7e8b..82ffc01357ebaf2aa6f291441b9c1e669eb8451d 100644 (file)
@@ -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 {