2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 13:37:55 +00:00

[#805,!5-p] Addressed more review comments

More cleanup following 1.4 and 1.5 branch reviews

doc/sphinx/arm/dhcp6-srv.rst
src/lib/dhcpsrv/memfile_lease_mgr.cc
This commit is contained in:
Thomas Markwalder
2019-08-16 12:12:39 -04:00
parent 923bbdcf7f
commit af7393c517
2 changed files with 2 additions and 2 deletions

View File

@@ -322,7 +322,7 @@ An example configuration of the memfile backend is presented below:
This configuration selects the ``/tmp/kea-leases6.csv`` as the storage
for lease information and enables persistence (writing lease updates to
this file). It also configures the backend to perform a periodic cleanup
of the lease file every 30 minutes and sets th maximum number of row
of the lease file every 30 minutes and sets the maximum number of row
errors to 100.

View File

@@ -1429,7 +1429,7 @@ bool Memfile_LeaseMgr::loadLeasesFromFiles(const std::string& filename,
try {
max_row_errors = boost::lexical_cast<uint32_t>(max_row_errors_str);
} catch (boost::bad_lexical_cast&) {
isc_throw(isc::BadValue, "invalid value of the max-row-errors"
isc_throw(isc::BadValue, "invalid value of the max-row-errors "
<< max_row_errors_str << " specified");
}