swebb2066 commented on PR #389:
URL: https://github.com/apache/logging-log4cxx/pull/389#issuecomment-2226577724

   > The following tests FAILED:
   >          52 - telnetappendertestcase (Timeout)
   
   When telnet appender is not explictly closed, the onexit processing chain 
does not terminate.
   
   The following change will at least fix the test.
   ```
   diff --git a/src/test/cpp/net/telnetappendertestcase.cpp 
b/src/test/cpp/net/telnetappendertestcase.cpp
   index b7aebbe5..1268c227 100644
   --- a/src/test/cpp/net/telnetappendertestcase.cpp
   +++ b/src/test/cpp/net/telnetappendertestcase.cpp
   @@ -118,6 +118,7 @@ class TelnetAppenderTestCase : public 
AppenderSkeletonTestCase
    #endif
                                   LOG4CXX_INFO(root, "Hello, World " << i);
                           }
   +                       appender->close();
                   }
   
    };
   
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to