close db connections on shutdown
This commit is contained in:
parent
3532f3daf7
commit
a9e3bcbfc3
4 changed files with 34 additions and 4 deletions
|
@ -64,8 +64,8 @@ create table if not exists watch_notes (
|
||||||
|
|
||||||
-- indices, not needed for follows
|
-- indices, not needed for follows
|
||||||
create index if not exists user_username_dex on users (username);
|
create index if not exists user_username_dex on users (username);
|
||||||
create index if not exists user_email_dex on users (email);
|
create index if not exists user_email_dex on users (lower(email));
|
||||||
create index if not exists watch_title_dex on watches (title);
|
create index if not exists watch_title_dex on watches (lower(title));
|
||||||
create index if not exists watch_added_by_dex on watches (added_by);
|
create index if not exists watch_added_by_dex on watches (added_by);
|
||||||
create index if not exists quests_user_dex on watch_quests (user);
|
create index if not exists quests_user_dex on watch_quests (user);
|
||||||
create index if not exists quests_watch_dex on watch_quests (watch);
|
create index if not exists quests_watch_dex on watch_quests (watch);
|
||||||
|
|
|
@ -36,4 +36,6 @@ async fn main() {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
println!("Added {rows} movies in {dur} seconds");
|
println!("Added {rows} movies in {dur} seconds");
|
||||||
|
|
||||||
|
w2w_db.close().await;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,6 +53,7 @@ async fn main() {
|
||||||
.fetch_one(&w2w_db)
|
.fetch_one(&w2w_db)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
w2w_db.close().await;
|
||||||
let dur = (end - start).as_secs_f32();
|
let dur = (end - start).as_secs_f32();
|
||||||
println!("Added {rows} quests in {dur} seconds");
|
println!("Added {rows} quests in {dur} seconds");
|
||||||
}
|
}
|
||||||
|
|
31
src/main.rs
31
src/main.rs
|
@ -1,6 +1,7 @@
|
||||||
use std::net::SocketAddr;
|
use std::net::SocketAddr;
|
||||||
|
|
||||||
use rand::{thread_rng, RngCore};
|
use rand::{thread_rng, RngCore};
|
||||||
|
use tokio::signal;
|
||||||
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
|
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
|
||||||
use what2watch::get_db_pool;
|
use what2watch::get_db_pool;
|
||||||
|
|
||||||
|
@ -23,13 +24,39 @@ async fn main() {
|
||||||
bytes
|
bytes
|
||||||
};
|
};
|
||||||
|
|
||||||
let app = what2watch::app(pool, &secret).await;
|
let app = what2watch::app(pool.clone(), &secret).await;
|
||||||
|
|
||||||
let addr: SocketAddr = ([0, 0, 0, 0], 3000).into();
|
let addr: SocketAddr = ([0, 0, 0, 0], 3000).into();
|
||||||
tracing::debug!("binding to {addr:?}");
|
tracing::debug!("binding to {addr:?}");
|
||||||
|
|
||||||
axum::Server::bind(&addr)
|
axum::Server::bind(&addr)
|
||||||
.serve(app.into_make_service())
|
.serve(app.into_make_service())
|
||||||
|
.with_graceful_shutdown(shutdown_signal())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap_or_default();
|
||||||
|
|
||||||
|
pool.close().await;
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn shutdown_signal() {
|
||||||
|
let ctrl_c = async {
|
||||||
|
signal::ctrl_c()
|
||||||
|
.await
|
||||||
|
.expect("failed to install Ctrl+C handler");
|
||||||
|
};
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
|
let terminate = async {
|
||||||
|
signal::unix::signal(signal::unix::SignalKind::terminate())
|
||||||
|
.expect("failed to install signal handler")
|
||||||
|
.recv()
|
||||||
|
.await;
|
||||||
|
};
|
||||||
|
|
||||||
|
tokio::select! {
|
||||||
|
_ = ctrl_c => {},
|
||||||
|
_ = terminate => {},
|
||||||
|
}
|
||||||
|
|
||||||
|
println!("signal received, starting graceful shutdown");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue