From 75e62abed00664843cb94524e7f336efb187b0b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Sun, 24 Oct 2021 22:22:28 +0200 Subject: [PATCH] Move database_max_conns --- src/config.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index ae593eab..9dbaed29 100644 --- a/src/config.rs +++ b/src/config.rs @@ -301,8 +301,6 @@ make_config! { data_folder: String, false, def, "data".to_string(); /// Database URL database_url: String, false, auto, |c| format!("{}/{}", c.data_folder, "db.sqlite3"); - /// Database connection pool size - database_max_conns: u32, false, def, 10; /// Icon cache folder icon_cache_folder: String, false, auto, |c| format!("{}/{}", c.data_folder, "icon_cache"); /// Attachments folder @@ -462,6 +460,9 @@ make_config! { /// Max database connection retries |> Number of times to retry the database connection during startup, with 1 second between each retry, set to 0 to retry indefinitely db_connection_retries: u32, false, def, 15; + /// Database connection pool size + database_max_conns: u32, false, def, 10; + /// Bypass admin page security (Know the risks!) |> Disables the Admin Token for the admin page so you may use your own auth in-front disable_admin_token: bool, true, def, false;