Unverified Commit 6c73f993 authored by fdb-hiroshima's avatar fdb-hiroshima Committed by GitHub
Browse files

unwrap when failling to open .env in plume

**this is a debug commit not expected to reach master, an actual fix will be needed**
parent 777cbaa6
Showing with 1 addition and 1 deletion
+1 -1
......@@ -73,7 +73,7 @@ compile_i18n!();
/// Initializes a database pool.
fn init_pool() -> Option<DbPool> {
dotenv::dotenv().ok();
dotenv::dotenv().unwrap();
let manager = ConnectionManager::<Connection>::new(CONFIG.database_url.as_str());
let pool = DbPool::builder()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment