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

[#1431] removed critical message about multi-threading being experimental

This commit is contained in:
Razvan Becheriu
2020-09-25 11:49:04 +03:00
parent 6e27580d54
commit 2ed468f900
4 changed files with 0 additions and 12 deletions

View File

@@ -932,9 +932,6 @@ ControlledDhcpv4Srv::processConfig(isc::data::ConstElementPtr config) {
// @todo This should be fixed.
try {
CfgMultiThreading::apply(CfgMgr::instance().getStagingCfg()->getDHCPMultiThreading());
if (MultiThreadingMgr::instance().getMode()) {
LOG_FATAL(dhcp4_logger, DHCP4_MULTI_THREADING_WARNING);
}
} catch (const std::exception& ex) {
err << "Error applying multi threading settings: "
<< ex.what();

View File

@@ -463,9 +463,6 @@ lifetime.
This is a message listing some information about the multi-threading parameters
with which the server is running.
% DHCP4_MULTI_THREADING_WARNING The multi-threading feature is experimental. Don't use in production environment.
This is a message warning about the experimental multi-threading feature.
% DHCP4_NCR_CREATE %1: DDNS updates enabled, therefore sending name change requests
This debug message is issued when the server is starting to send
name change requests to the D2 module to update records for the client

View File

@@ -953,9 +953,6 @@ ControlledDhcpv6Srv::processConfig(isc::data::ConstElementPtr config) {
// @todo This should be fixed.
try {
CfgMultiThreading::apply(CfgMgr::instance().getStagingCfg()->getDHCPMultiThreading());
if (MultiThreadingMgr::instance().getMode()) {
LOG_FATAL(dhcp6_logger, DHCP6_MULTI_THREADING_WARNING);
}
} catch (const std::exception& ex) {
err << "Error applying multi threading settings: "
<< ex.what();

View File

@@ -510,9 +510,6 @@ IAID.
This is a message listing some information about the multi-threading parameters
with which the server is running.
% DHCP6_MULTI_THREADING_WARNING The multi-threading feature is experimental. Don't use in production environment.
This is a message warning about the experimental multi-threading feature.
% DHCP6_NOT_RUNNING IPv6 DHCP server is not running
A warning message is issued when an attempt is made to shut down the
IPv6 DHCP server but it is not running.