| 69 | } |
| 70 | |
| 71 | void Archive::db_commit() { |
| 72 | if (!m_db || m_read_only) |
| 73 | return; |
| 74 | m_db->commit_db_txn(); |
| 75 | } |
| 76 | |
| 77 | void Archive::read_archive(api::cnd::GetArchive::Request &&req, api::cnd::GetArchive::Response &resp) { |
| 78 | if (m_unique_id.empty()) |
nothing calls this directly
no test coverage detected