mirror of https://github.com/LemmyNet/lemmy.git
Fixing clippy expect issue.
parent
7839eb6d40
commit
a6d88fdfb0
|
@ -112,7 +112,7 @@ impl<T> MaybeOptional<T> for Option<T> {
|
||||||
|
|
||||||
pub fn establish_unpooled_connection() -> PgConnection {
|
pub fn establish_unpooled_connection() -> PgConnection {
|
||||||
let db_url = Settings::get().get_database_url();
|
let db_url = Settings::get().get_database_url();
|
||||||
PgConnection::establish(&db_url).expect(&format!("Error connecting to {}", db_url))
|
PgConnection::establish(&db_url).unwrap_or_else(|_| panic!("Error connecting to {}", db_url))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(EnumString, ToString, Debug, Serialize, Deserialize)]
|
#[derive(EnumString, ToString, Debug, Serialize, Deserialize)]
|
||||||
|
|
Loading…
Reference in New Issue