]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#805,!5-p] Addressed more review comments
authorThomas Markwalder <tmark@isc.org>
Fri, 16 Aug 2019 16:12:39 +0000 (12:12 -0400)
committerThomas Markwalder <tmark@isc.org>
Fri, 16 Aug 2019 21:57:21 +0000 (17:57 -0400)
    More cleanup following 1.4 and 1.5 branch reviews

doc/sphinx/arm/dhcp6-srv.rst
src/lib/dhcpsrv/memfile_lease_mgr.cc

doc/sphinx/arm/dhcp6-srv.rst
src/lib/dhcpsrv/memfile_lease_mgr.cc

index d2b3b53a0e2fc3cabb759d9806939e0f649ed533..5a4046212f596190b9c6d78c2be1dc437f8e4ea4 100644 (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.
 
 
index 9efa6d7d5ca452b8b9c6128768e433f1b68a01ad..93f84a5d64d7ca6cbb2886244c5a472cedfbfc0e 100644 (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");
     }