Skip to content
Snippets Groups Projects
Commit 3127127c authored by Daniel Salzman's avatar Daniel Salzman
Browse files

conf: add notice log about missing confdb when starting txn

parent b7450701
No related branches found
No related tags found
No related merge requests found
Pipeline #46822 passed with warnings
......@@ -73,6 +73,11 @@ int conf_io_begin(
return KNOT_TXN_EEXISTS;
}
if (conf()->filename != NULL) {
log_ctl_notice("control, persistent configuration database "
"not available");
}
// Start the writing transaction.
int ret = knot_db_lmdb_txn_begin(conf()->db, txn, parent, 0);
if (ret != KNOT_EOK) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment