mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-03-04 08:19:56 +00:00
ARTEMIS-2968 Ignoring expected exception when deleting a previously already removed queue
This commit is contained in:
parent
480197975b
commit
981b516479
@ -22,6 +22,7 @@ import java.util.Map;
|
||||
import java.util.function.ToLongFunction;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import org.apache.activemq.artemis.api.core.ActiveMQNonExistentQueueException;
|
||||
import org.apache.activemq.artemis.api.core.Message;
|
||||
import org.apache.activemq.artemis.api.core.QueueConfiguration;
|
||||
import org.apache.activemq.artemis.api.core.SimpleString;
|
||||
@ -276,7 +277,11 @@ public class AMQPMirrorControllerTarget extends ProtonAbstractReceiver implement
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("destroy queue " + queueName + " on address = " + addressName);
|
||||
}
|
||||
server.destroyQueue(queueName);
|
||||
try {
|
||||
server.destroyQueue(queueName);
|
||||
} catch (ActiveMQNonExistentQueueException expected) {
|
||||
logger.debug("queue " + queueName + " was previously removed", expected);
|
||||
}
|
||||
}
|
||||
|
||||
private static ToLongFunction<MessageReference> referenceIDSupplier = (source) -> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user