]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#691,!395] Removed debug leftovers from ha service.
authorMarcin Siodelski <marcin@isc.org>
Wed, 26 Jun 2019 18:00:53 +0000 (20:00 +0200)
committerThomas Markwalder <tmark@isc.org>
Thu, 27 Jun 2019 11:50:55 +0000 (07:50 -0400)
src/hooks/dhcp/high_availability/ha_service.cc

index 7dafa7f17fcb902f099d1213217f17c914203f3c..f3188b3019057889b685c6aa1adf53f27d9484fb 100644 (file)
@@ -1622,9 +1622,6 @@ HAService::verifyAsyncResponse(const HttpResponsePtr& response) {
 bool
 HAService::clientConnectHandler(const boost::system::error_code& ec, int tcp_native_fd) {
     if (!ec || (ec.value() == boost::asio::error::in_progress)) {
-        if (ec && (ec.value() == boost::asio::error::in_progress)) {
-            std::cout << "connect in_progress : " << tcp_native_fd << std::endl;
-        }
 
         if (tcp_native_fd < 0) {
             // This really should not be possible, but just in case.