Fix some warnings

This commit is contained in:
Joscha 2022-08-01 20:06:06 +02:00
parent ac2602c4b8
commit 7988daf34d
2 changed files with 3 additions and 2 deletions

View file

@ -57,6 +57,7 @@ fn run(mut conn: Connection, mut rx: mpsc::UnboundedReceiver<Request>) {
}
Request::Gc(tx) => {
let _ = conn.execute_batch("ANALYZE; VACUUM;");
drop(tx);
}
Request::Euph(r) => r.perform(&mut conn),
}