]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1431] removed critical message about multi-threading being experimental
authorRazvan Becheriu <razvan@isc.org>
Fri, 25 Sep 2020 08:49:04 +0000 (11:49 +0300)
committerRazvan Becheriu <razvan@isc.org>
Fri, 25 Sep 2020 11:19:42 +0000 (11:19 +0000)
src/bin/dhcp4/ctrl_dhcp4_srv.cc
src/bin/dhcp4/dhcp4_messages.mes
src/bin/dhcp6/ctrl_dhcp6_srv.cc
src/bin/dhcp6/dhcp6_messages.mes

index c38966d2e780abe233a60485ba2553846027d355..5fc0292252ec14ea745203681129a9d9b52877ae 100644 (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();
index b0ee95e32481c40734ca069fe48161285f63273c..cb1c4d33d8899e0633da626728f8846e9f11bae3 100644 (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
index bcb9d3992d9247eb063701736b909cd55b0eeaa5..e17bb37b6553528a65fe98a2594cbcf69059dfb9 100644 (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();
index 6153aac5d37f72bfc9864b6998e74f047247929f..e275ae5da98a78451812ae961ea05b175f7da56b 100644 (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.