Description
ReconnectionDelay is not working for XMLSocketAppender. This method is
backwards:
void SocketAppenderSkeleton::fireConnector()
{
synchronized sync(mutex);
if (thread.isActive())
}
The if condition is backwards. The code currently says it the thread is already running then start it. You need a ! on the condition.