Fix P1 Rust: repair mangled auth lines, fix _jwt_secret constructor
Some checks failed
CI — P1 Route (Rust) / test (push) Failing after 6m52s

This commit is contained in:
2026-03-01 17:04:02 +00:00
parent d5a10d9266
commit 6e044809d4
2 changed files with 4 additions and 4 deletions

View File

@@ -39,8 +39,8 @@ pub struct LocalAuthProvider {
}
impl LocalAuthProvider {
pub fn new(pool: sqlx::PgPool, _jwt_secret: String, redis: deadpool_redis::Pool) -> Self {
Self { pool, jwt_secret, redis }
pub fn new(pool: sqlx::PgPool, jwt_secret: String, redis: deadpool_redis::Pool) -> Self {
Self { pool, _jwt_secret: jwt_secret, redis }
}
}