ARTEMIS-1082 Catch Create Queue race in OpenWire
This commit is contained in:
parent
056a88dfca
commit
955af96fe9
|
@ -23,6 +23,7 @@ import java.util.concurrent.ScheduledExecutorService;
|
|||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.apache.activemq.artemis.api.core.ActiveMQQueueExistsException;
|
||||
import org.apache.activemq.artemis.api.core.RoutingType;
|
||||
import org.apache.activemq.artemis.api.core.SimpleString;
|
||||
import org.apache.activemq.artemis.core.paging.PagingStore;
|
||||
|
@ -176,16 +177,20 @@ public class AMQSession implements SessionCallback {
|
|||
BindingQueryResult bindingQuery = server.bindingQuery(queueName);
|
||||
QueueQueryResult queueBinding = server.queueQuery(queueName);
|
||||
|
||||
boolean isAutoCreate = bindingQuery.isExists() ? true : bindingQuery.isAutoCreateQueues();
|
||||
|
||||
try {
|
||||
if (!queueBinding.isExists()) {
|
||||
if (isAutoCreate) {
|
||||
if (bindingQuery.isAutoCreateQueues()) {
|
||||
server.createQueue(queueName, RoutingType.ANYCAST, queueName, null, true, isTemporary);
|
||||
connection.addKnownDestination(queueName);
|
||||
} else {
|
||||
hasQueue = false;
|
||||
}
|
||||
}
|
||||
} catch (ActiveMQQueueExistsException e) {
|
||||
// In case another thread created the queue before us but after we did the binding query
|
||||
hasQueue = true;
|
||||
}
|
||||
|
||||
}
|
||||
return hasQueue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue