2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-18 14:00:15 +00:00

[#1621] fixed error message

This commit is contained in:
Razvan Becheriu
2021-03-26 08:33:11 +02:00
parent f5a8d51cf3
commit 9ed7ec4250

View File

@@ -298,7 +298,7 @@ ReconnectCtl::onFailActionFromText(const std::string& text) {
} else if (text == "server-retry-continue") {
return (OnFailAction::SERVE_RETRY_CONTINUE);
} else {
isc_throw(BadValue, "Invalid action on failed connection recovery: " << text);
isc_throw(BadValue, "Invalid action on connection loss: " << text);
}
}