Skip to content

Commit

Permalink
bump to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Aug 19, 2024
1 parent 2567fd3 commit c18c850
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmtp_mls/src/storage/encrypted_store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl EncryptedMessageStore {
.max_size(1)
.build(ConnectionManager::<SqliteConnection>::new(":memory:"))?,
StorageOption::Persistent(ref path) => Pool::builder()
.max_size(25)
.max_size(11)
.build(ConnectionManager::<SqliteConnection>::new(path))?,
};

Expand Down Expand Up @@ -343,7 +343,7 @@ impl EncryptedMessageStore {
.max_size(1)
.build(ConnectionManager::<SqliteConnection>::new(":memory:"))?,
StorageOption::Persistent(ref path) => Pool::builder()
.max_size(25)
.max_size(11)
.build(ConnectionManager::<SqliteConnection>::new(path))?,
};

Expand Down

0 comments on commit c18c850

Please sign in to comment.