]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4459] Fix HA_PAUSE_CLIENT_LISTENER_FAILED
authorAndrei Pavel <andrei@isc.org>
Wed, 15 Apr 2026 17:44:28 +0000 (20:44 +0300)
committerAndrei Pavel <andrei@isc.org>
Tue, 5 May 2026 12:43:34 +0000 (15:43 +0300)
src/hooks/dhcp/high_availability/ha_messages.mes
src/hooks/dhcp/high_availability/ha_service.cc

index 928bd80176bdefc9d74d4154d0ebc06845166db3..afc2da428e55c67decd4601899a5c9bc1739d9dc 100644 (file)
@@ -611,6 +611,7 @@ parameter must be specified for the hooks library to load properly.
 This error message is emitted when attempting to pause HA's HTTP client and
 listener threads. This error is highly unlikely and indicates a programmatic
 issue that should be reported as a defect.
+The server name and the cause of the error are printed.
 
 % HA_PAUSE_CLIENT_LISTENER_ILLEGAL %1: pausing multi-threaded HTTP processing failed: %2
 This error message is emitted when attempting to pause HA's HTTP client or
index e3baf79594587b833c2d700bacc04582e2b9f499..3cb9532e993ed5fb8d597b270e62ebb153dfdec8 100644 (file)
@@ -3441,6 +3441,7 @@ HAService::pauseClientAndListener() {
         }
     } catch (const std::exception& ex) {
         LOG_ERROR(ha_logger, HA_PAUSE_CLIENT_LISTENER_FAILED)
+                  .arg(config_->getThisServerName())
                   .arg(ex.what());
     }
 }