michaelandrepearce commented on a change in pull request #2655: ARTEMIS-2327
ExceptionListener invoked when connection level exception
URL: https://github.com/apache/activemq-artemis/pull/2655#discussion_r280436083
##########
File path:
tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/remoting/ReconnectTest.java
##########
@@ -330,9 +330,13 @@ public void testReattachTimeout() throws Exception {
server.start();
// imitate session reattach timeout
Interceptor reattachInterceptor = new Interceptor() {
+
+ boolean reattached;
+
@Override
public boolean intercept(Packet packet, RemotingConnection
connection) throws ActiveMQException {
- if (packet.getType() == PacketImpl.REATTACH_SESSION) {
+ if (!reattached && packet.getType() ==
PacketImpl.REATTACH_SESSION) {
Review comment:
@clebertsuconic re-attach is meant to occur just the once, so making the
imitation done via interceptor do that.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services