Java ConnectorServlet#doGet not thread safe?

It seems to me that the method ConnectorServlet#doGet() is not thread safe?

public void doGet( HttpServletRequest req, HttpServletResponse res )
throws ServletException, IOException
{
BaseConnector.global_http_request = req;
BaseConnector.global_http_response = res;
try
{
configure();
}
finally
{
LogManager.getInstance().close();
}
}

It uses two static variables and there’s only one instance of LogManager. When two calls are made simultaneously to servlets everything gets mixed up?

coderanch.com/t/452389/Servl … threadsafe

There is an alternative, thread safe way to init connector

docs.dhtmlx.com/doku.php?id=dhtm … ialization

Thank you. ThreadSafeConnectorServlet works fine.