Decrease timeout for running slow queries from 5 seconds to 2 seconds

This commit is contained in:
Jakub Vrana 2018-03-09 18:06:52 +01:00
parent 665fafb297
commit 8ab2c7e03b
2 changed files with 2 additions and 1 deletions

View file

@ -75,7 +75,7 @@ class Adminer {
* @return float number of seconds * @return float number of seconds
*/ */
function queryTimeout() { function queryTimeout() {
return 5; return 2;
} }
/** Headers to send before HTML output /** Headers to send before HTML output

View file

@ -1,6 +1,7 @@
Adminer 4.6.3-dev: Adminer 4.6.3-dev:
Stop session before connecting Stop session before connecting
Simplify running slow queries Simplify running slow queries
Decrease timeout for running slow queries from 5 seconds to 2 seconds
Fix displaying info about non-alphabetical objects (bug #599) Fix displaying info about non-alphabetical objects (bug #599)
PDO: Support binary fields download PDO: Support binary fields download
MySQL: Use CONVERT() only when searching for non-ASCII (bug #603) MySQL: Use CONVERT() only when searching for non-ASCII (bug #603)