From 6494c828c1ba66b7e1e212e1ddfc0ec47b5c46df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sun, 15 Apr 2018 15:26:36 +0200 Subject: [PATCH] Fixed incorrect computed timeout from previous commit --- lib/MySQL_Thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MySQL_Thread.cpp b/lib/MySQL_Thread.cpp index f8924a17f..d86e2d8cd 100644 --- a/lib/MySQL_Thread.cpp +++ b/lib/MySQL_Thread.cpp @@ -2786,7 +2786,7 @@ __run_skip_1: //__mysql_thread_exit_add_mirror: - mypolls.poll_timeout = mysql_thread___poll_timeout/1000; // predefined default value + mypolls.poll_timeout = mysql_thread___poll_timeout*1000; // predefined default value //mypolls.abs_poll_timeout = curtime + mypolls.poll_timeout; for (n = 0; n < mypolls.len; n++) { MySQL_Data_Stream *myds=NULL;