Adjustment to DATABASE_TIMEOUT
This commit is contained in:
parent
3fc0ba3a63
commit
aa9ce52f47
2 changed files with 3 additions and 1 deletions
|
@ -20,6 +20,8 @@
|
|||
ob_start();
|
||||
|
||||
date_default_timezone_set('UTC');
|
||||
define("DATABASE_TIMEOUT", 10000);
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
|
|
@ -27,7 +27,7 @@ function _d(string $name, $value): void
|
|||
}
|
||||
_d("DATABASE_DSN", null); // string PDO database connection details
|
||||
_d("DATABASE_KA", true); // string Keep database connection alive
|
||||
_d("DATABASE_TIMEOUT", 10000); // string Keep database connection alive
|
||||
_d("DATABASE_TIMEOUT", 10000);// int Time to wait for each statement to complete
|
||||
_d("CACHE_DSN", null); // string cache connection details
|
||||
_d("DEBUG", false); // boolean print various debugging details
|
||||
_d("DEBUG_SQL", false); // boolean dump SQL queries to data/sql.log
|
||||
|
|
Reference in a new issue