1
0
Fork 0
mirror of https://github.com/mCaptcha/mCaptcha.git synced 2025-05-02 13:20:23 +03:00

chore: bump sqlx to 0.7

This commit is contained in:
Aravinth Manivannan 2023-10-16 21:11:04 +05:30
parent 0d2c02348b
commit 0e75a22beb
No known key found for this signature in database
GPG key ID: F8F50389936984FF
105 changed files with 2455 additions and 1183 deletions
db/db-sqlx-postgres/src

View file

@ -61,7 +61,7 @@ impl Connect for ConnectionOptions {
let mut connect_options =
sqlx::postgres::PgConnectOptions::from_str(&fresh.url).unwrap();
if fresh.disable_logging {
connect_options.disable_statement_logging();
connect_options = connect_options.disable_statement_logging();
}
fresh
.pool_options