summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2017-06-21 17:36:53 +0200
committerlouiz’ <louiz@louiz.org>2017-06-21 17:41:03 +0200
commit4d55a120d8fa5564a439102ab97b43da589bf4f3 (patch)
treec4b46b71ca41d933f348ab0a6683efd9f39c3044 /src/utils
parent651caabb2d2f4e2d6bac3fcde59a69f9cad7eb75 (diff)
downloadbiboumi-4d55a120d8fa5564a439102ab97b43da589bf4f3.tar.gz
biboumi-4d55a120d8fa5564a439102ab97b43da589bf4f3.tar.bz2
biboumi-4d55a120d8fa5564a439102ab97b43da589bf4f3.tar.xz
biboumi-4d55a120d8fa5564a439102ab97b43da589bf4f3.zip
Re-implement correctly the handling of failure to open the database
If we can’t open it at startup, we exit. If we can’t open it on reload, we keep the previously-opened database. This way, we’re assured to always have a valid and open database available.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/reload.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/utils/reload.cpp b/src/utils/reload.cpp
index 807a9ab..fdca9bc 100644
--- a/src/utils/reload.cpp
+++ b/src/utils/reload.cpp
@@ -11,7 +11,6 @@ void open_database()
#ifdef USE_DATABASE
const auto db_filename = Config::get("db_name", xdg_data_path("biboumi.sqlite"));
log_info("Opening database: ", db_filename);
- Database::close();
Database::open(db_filename);
log_info("database successfully opened.");
#endif