ARTEMIS-2835 Porting HORNETQ-1575 and HORNETQ-1578
2 of 2) - Porting of HORNETQ-1578 Exceptions are swallowed, making it hard to diagnose issues
This commit is contained in:
parent
6f8ff55dec
commit
8c25daee98
|
@ -2100,4 +2100,8 @@ public interface ActiveMQServerLogger extends BasicLogger {
|
||||||
@LogMessage(level = Logger.Level.ERROR)
|
@LogMessage(level = Logger.Level.ERROR)
|
||||||
@Message(id = 224104, value = "Error starting the Acceptor {0} {1}", format = Message.Format.MESSAGE_FORMAT)
|
@Message(id = 224104, value = "Error starting the Acceptor {0} {1}", format = Message.Format.MESSAGE_FORMAT)
|
||||||
void errorStartingAcceptor(String name, Object configuration);
|
void errorStartingAcceptor(String name, Object configuration);
|
||||||
|
|
||||||
|
@LogMessage(level = Logger.Level.WARN)
|
||||||
|
@Message(id = 224105, value = "Connecting to cluster failed")
|
||||||
|
void failedConnectingToCluster(@Cause Exception e);
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,7 @@ import java.util.concurrent.TimeUnit;
|
||||||
import org.apache.activemq.artemis.api.core.ActiveMQAlreadyReplicatingException;
|
import org.apache.activemq.artemis.api.core.ActiveMQAlreadyReplicatingException;
|
||||||
import org.apache.activemq.artemis.api.core.ActiveMQDisconnectedException;
|
import org.apache.activemq.artemis.api.core.ActiveMQDisconnectedException;
|
||||||
import org.apache.activemq.artemis.api.core.ActiveMQException;
|
import org.apache.activemq.artemis.api.core.ActiveMQException;
|
||||||
|
import org.apache.activemq.artemis.api.core.ActiveMQExceptionType;
|
||||||
import org.apache.activemq.artemis.api.core.ActiveMQIllegalStateException;
|
import org.apache.activemq.artemis.api.core.ActiveMQIllegalStateException;
|
||||||
import org.apache.activemq.artemis.api.core.DiscoveryGroupConfiguration;
|
import org.apache.activemq.artemis.api.core.DiscoveryGroupConfiguration;
|
||||||
import org.apache.activemq.artemis.api.core.Pair;
|
import org.apache.activemq.artemis.api.core.Pair;
|
||||||
|
@ -330,6 +331,10 @@ public class SharedNothingLiveActivation extends LiveActivation {
|
||||||
// Just try connecting
|
// Just try connecting
|
||||||
listener.latch.await(5, TimeUnit.SECONDS);
|
listener.latch.await(5, TimeUnit.SECONDS);
|
||||||
} catch (Exception notConnected) {
|
} catch (Exception notConnected) {
|
||||||
|
if (!(notConnected instanceof ActiveMQException) || ActiveMQExceptionType.INTERNAL_ERROR.equals(((ActiveMQException) notConnected).getType())) {
|
||||||
|
// report all exceptions that aren't ActiveMQException and all INTERNAL_ERRORs
|
||||||
|
ActiveMQServerLogger.LOGGER.failedConnectingToCluster(notConnected);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue