]
Thomas Diesler resolved ARQ-1619.
---------------------------------
Resolution: Out of Date
Tomcat managed container ignores allowConnectingToRunningServer
---------------------------------------------------------------
Key: ARQ-1619
URL:
https://issues.jboss.org/browse/ARQ-1619
Project: Arquillian
Issue Type: Bug
Components: Tomcat Containers
Affects Versions: tomcat_1.0.0.CR5
Reporter: Thomas Diesler
Assignee: Ian Brandt
Fix For: tomcat_1.0.0.Final
The flag is not checked
{code}
if(manager.isRunning())
{
throw new LifecycleException(
"The server is already running! " +
"Managed containers does not support connecting to running
server instances due to the " +
"possible harmful effect of connecting to the wrong server.
Please stop server before running or " +
"change to another type of container.\n" +
"To disable this check and allow Arquillian to connect to a
running server, " +
"set allowConnectingToRunningServer to true in the container
configuration"
);
}
{code}