Skip to content

Commit

Permalink
Merge pull request #189 from andrewwhitehead/fix/upd-max-conns
Browse files Browse the repository at this point in the history
Adjust lower maximum number of connections for sqlite
  • Loading branch information
swcurran authored Sep 28, 2023
2 parents 62281b7 + 84e8e3b commit d409a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion askar-storage/src/backend/sqlite/provision.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::{
};

const DEFAULT_MIN_CONNECTIONS: usize = 1;
const DEFAULT_LOWER_MAX_CONNECTIONS: usize = 2;
const DEFAULT_LOWER_MAX_CONNECTIONS: usize = 4;
const DEFAULT_UPPER_MAX_CONNECTIONS: usize = 8;
const DEFAULT_BUSY_TIMEOUT: Duration = Duration::from_secs(5);
const DEFAULT_JOURNAL_MODE: SqliteJournalMode = SqliteJournalMode::Wal;
Expand Down

0 comments on commit d409a38

Please sign in to comment.