From 24e02e95d55070834df6d5405079410648634f08 Mon Sep 17 00:00:00 2001 From: Rahim Kanji Date: Sun, 9 Nov 2025 23:35:52 +0500 Subject: [PATCH] Changing monitor ping poll() timeout to 10ms --- lib/MySQL_Monitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MySQL_Monitor.cpp b/lib/MySQL_Monitor.cpp index 26f9549dc..07ddd318f 100644 --- a/lib/MySQL_Monitor.cpp +++ b/lib/MySQL_Monitor.cpp @@ -7483,7 +7483,7 @@ void MySQL_Monitor::monitor_ping_async(SQLite3_result* resultset) { Monitor_Poll::Process_Ready_Task_Callback_Args args(5, 30, 50, &MySQL_Monitor::monitor_ping_process_ready_tasks, this); - if (monitor_poll.event_loop(mysql_thread___monitor_ping_timeout, args) == false) { + if (monitor_poll.event_loop(10, args) == false) { return; } }