2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 22:15:23 +00:00

[#3019] retry db open on startup

This commit is contained in:
Razvan Becheriu
2023-10-18 18:30:33 +03:00
parent 463ede2e5a
commit d781e915cd
84 changed files with 8851 additions and 7282 deletions

View File

@@ -510,13 +510,14 @@ public:
/// is correct. Thus it must not rely on a pre-prepared statement or
/// formal statement execution error checking.
///
/// @param timer_name The DB reconnect timer name.
/// @return Version number stored in the database, as a pair of unsigned
/// integers. "first" is the major version number, "second" the
/// minor number.
///
/// @throw isc::db::DbOperationError An operation on the open database
/// has failed.
virtual std::pair<uint32_t, uint32_t> getVersion() const;
virtual std::pair<uint32_t, uint32_t> getVersion(const std::string& timer_name = "") const;
/// @brief Commit Transactions
///