Increase default database connections (fixes #3394) (#3994)

pull/3998/head
Nutomic 8 months ago committed by GitHub
parent 9275041f42
commit 9bb99bec5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,7 +34,7 @@
# Name of the postgres database for lemmy
database: "string"
# Maximum number of active sql connections
pool_size: 5
pool_size: 95
}
# Settings related to activitypub federation
# Pictrs image server configuration.

@ -75,7 +75,7 @@ pub struct DatabaseConfig {
pub connection: DatabaseConnection,
/// Maximum number of active sql connections
#[default(5)]
#[default(95)]
pub pool_size: usize,
}

Loading…
Cancel
Save