commit 75e62abed00664843cb94524e7f336efb187b0b2
parent 97f9eb13200a7876d231b6f6d3e9a9498d8721b4
Author: Daniel GarcĂa <dani-garcia@users.noreply.github.com>
Date: Sun, 24 Oct 2021 22:22:28 +0200
Move database_max_conns
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git 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;