0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-13 09:28:58 +02:00

Small change for rocket compatibilty

This commit is contained in:
BlackDex 2020-03-16 16:36:44 +01:00
parent 3ce0c3d1a5
commit 078234d8b3

View file

@ -76,7 +76,8 @@ impl<'a, 'r> FromRequest<'a, 'r> for DbConn {
type Error = ();
fn from_request(request: &'a Request<'r>) -> request::Outcome<DbConn, ()> {
let pool = request.guard::<State<Pool>>()?;
// https://github.com/SergioBenitez/Rocket/commit/e3c1a4ad3ab9b840482ec6de4200d30df43e357c
let pool = try_outcome!(request.guard::<State<Pool>>());
match pool.get() {
Ok(conn) => Outcome::Success(DbConn(conn)),
Err(_) => Outcome::Failure((Status::ServiceUnavailable, ())),