mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-26 21:41:04 +00:00
Assign unsed return value to underscore variable
This commit is contained in:
parent
346a67fe1c
commit
05a98175bf
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ fn init_pool() -> Option<DbPool> {
|
|||
let pool = builder.build(manager).ok()?;
|
||||
let conn = pool.get().unwrap();
|
||||
Instance::cache_local(&conn);
|
||||
Instance::create_local_instance_user(&conn);
|
||||
let _ = Instance::create_local_instance_user(&conn);
|
||||
Instance::cache_local_instance_user(&conn);
|
||||
Some(pool)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue