diff --git a/xmtp_mls/src/storage/encrypted_store/mod.rs b/xmtp_mls/src/storage/encrypted_store/mod.rs index 8bb16efe5..14bc4c2a6 100644 --- a/xmtp_mls/src/storage/encrypted_store/mod.rs +++ b/xmtp_mls/src/storage/encrypted_store/mod.rs @@ -121,7 +121,7 @@ impl EncryptedMessageStore { .max_size(1) .build(ConnectionManager::::new(":memory:"))?, StorageOption::Persistent(ref path) => Pool::builder() - .max_size(25) + .max_size(11) .build(ConnectionManager::::new(path))?, }; @@ -343,7 +343,7 @@ impl EncryptedMessageStore { .max_size(1) .build(ConnectionManager::::new(":memory:"))?, StorageOption::Persistent(ref path) => Pool::builder() - .max_size(25) + .max_size(11) .build(ConnectionManager::::new(path))?, };