mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-22 00:59:07 -05:00
improvement: show errors when writing new sqlite db
Build the sqlite writer pool first, which will provide a better error message in the event the database is not writeable or readable.
This commit is contained in:
parent
dfa6985f44
commit
bdd4e43df4
|
@ -53,6 +53,14 @@ pub struct SqliteRepo {
|
||||||
impl SqliteRepo {
|
impl SqliteRepo {
|
||||||
// build all the pools needed
|
// build all the pools needed
|
||||||
#[must_use] pub fn new(settings: &Settings, metrics: NostrMetrics) -> SqliteRepo {
|
#[must_use] pub fn new(settings: &Settings, metrics: NostrMetrics) -> SqliteRepo {
|
||||||
|
let write_pool = build_pool(
|
||||||
|
"writer",
|
||||||
|
settings,
|
||||||
|
OpenFlags::SQLITE_OPEN_READ_WRITE | OpenFlags::SQLITE_OPEN_CREATE,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
false,
|
||||||
|
);
|
||||||
let maint_pool = build_pool(
|
let maint_pool = build_pool(
|
||||||
"maintenance",
|
"maintenance",
|
||||||
settings,
|
settings,
|
||||||
|
@ -69,14 +77,6 @@ impl SqliteRepo {
|
||||||
settings.database.max_conn,
|
settings.database.max_conn,
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
let write_pool = build_pool(
|
|
||||||
"writer",
|
|
||||||
settings,
|
|
||||||
OpenFlags::SQLITE_OPEN_READ_WRITE | OpenFlags::SQLITE_OPEN_CREATE,
|
|
||||||
1,
|
|
||||||
2,
|
|
||||||
false,
|
|
||||||
);
|
|
||||||
|
|
||||||
// this is used to block new reads during critical checkpoints
|
// this is used to block new reads during critical checkpoints
|
||||||
let checkpoint_in_progress = Arc::new(Mutex::new(0));
|
let checkpoint_in_progress = Arc::new(Mutex::new(0));
|
||||||
|
@ -852,6 +852,7 @@ pub fn build_pool(
|
||||||
) -> SqlitePool {
|
) -> SqlitePool {
|
||||||
let db_dir = &settings.database.data_directory;
|
let db_dir = &settings.database.data_directory;
|
||||||
let full_path = Path::new(db_dir).join(DB_FILE);
|
let full_path = Path::new(db_dir).join(DB_FILE);
|
||||||
|
|
||||||
// small hack; if the database doesn't exist yet, that means the
|
// small hack; if the database doesn't exist yet, that means the
|
||||||
// writer thread hasn't finished. Give it a chance to work. This
|
// writer thread hasn't finished. Give it a chance to work. This
|
||||||
// is only an issue with the first time we run.
|
// is only an issue with the first time we run.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user