We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8165a7c commit 2a62530Copy full SHA for 2a62530
src/lib.rs
@@ -117,9 +117,9 @@ impl SqlxPostgresqlSessionStore {
117
Self::builder(connection_string).build().await
118
}
119
120
- pub async fn from_pool(pool: Arc<Pool<Postgres>>) -> SqlxPostgresqlSessionStoreBuilder {
121
- SqlxPostgresqlSessionStoreBuilder {
122
- connection_data: ConnectionPool(pool),
+ pub fn from_pool(pool: Arc<Pool<Postgres>>) -> SqlxPostgresqlSessionStore {
+ SqlxPostgresqlSessionStore {
+ client_pool: pool,
123
configuration: CacheConfiguration::default(),
124
125
0 commit comments