]
James Perkins closed WFLY-867.
------------------------------
Resolution: Duplicate Issue
See
org.jboss.as.arquillian.container.ManagementClient.isServerInRunningState() silently
swallows exceptions
--------------------------------------------------------------------------------------------------------
Key: WFLY-867
URL:
https://issues.jboss.org/browse/WFLY-867
Project: WildFly
Issue Type: Bug
Components: Test Suite
Environment: n/a
Reporter: Stephen Coy
Assignee: Ondrej Zizka
{code:java}
public boolean isServerInRunningState() {
try {
...
} catch (Throwable ignored) {
return false;
}
}
{code}
Some exceptions will never be recoverable (such as java.lang.ClassNotFoundException) and
logging them would be useful.