Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id CE968200D69 for ; Tue, 21 Nov 2017 18:03:09 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id CD6F8160BE3; Tue, 21 Nov 2017 17:03:09 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A4B5E160C0F for ; Tue, 21 Nov 2017 18:03:08 +0100 (CET) Received: (qmail 20659 invoked by uid 500); 21 Nov 2017 17:03:07 -0000 Mailing-List: contact issues-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list issues@activemq.apache.org Received: (qmail 20567 invoked by uid 99); 21 Nov 2017 17:03:07 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Nov 2017 17:03:07 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 11D5C180739 for ; Tue, 21 Nov 2017 17:03:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id aHsV5A3MdFYR for ; Tue, 21 Nov 2017 17:03:02 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id C6E105FCCF for ; Tue, 21 Nov 2017 17:03:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id E3092E0D65 for ; Tue, 21 Nov 2017 17:03:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 99DD2255AA for ; Tue, 21 Nov 2017 17:03:00 +0000 (UTC) Date: Tue, 21 Nov 2017 17:03:00 +0000 (UTC) From: "ASF subversion and git services (JIRA)" To: issues@activemq.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (ARTEMIS-1416) Queue autocreate does not autocreate queue if address already exists MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 21 Nov 2017 17:03:10 -0000 [ https://issues.apache.org/jira/browse/ARTEMIS-1416?page=3Dcom.atlassi= an.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D16= 261057#comment-16261057 ]=20 ASF subversion and git services commented on ARTEMIS-1416: ---------------------------------------------------------- Commit 1d1d6c8b4686f869df0ca5fc09c20128f8481cff in activemq-artemis's branc= h refs/heads/master from Clebert Suconic [ https://git-wip-us.apache.org/repos/asf?p=3Dactivemq-artemis.git;h=3D1d1d= 6c8 ] ARTEMIS-1416 Implementing cache on queue and address querying This will cache the last query, optimizing most of the cases This won't optimize the case where you are sending producers with different= address, but this is not the one I'm after now. > Queue autocreate does not autocreate queue if address already exists > -------------------------------------------------------------------- > > Key: ARTEMIS-1416 > URL: https://issues.apache.org/jira/browse/ARTEMIS-1416 > Project: ActiveMQ Artemis > Issue Type: Bug > Components: Broker, OpenWire > Affects Versions: 2.3.0 > Reporter: Jiri Dan=C4=9Bk > Assignee: Howard Gao > > # Configure NIO in broker.xml (that is the d= efault if you don't have libaio on your system) > # Start Artemis Broker > # Excecute test https://github.com/jdanekrh/jms-reproducers/blob/master/s= rc/test/java/org/apache/activemq/artemis/tests/integration/jms/largemessage= /JMSLargeMessageTest.java. (Two tests. testSmallString sends message of siz= e 1024 and testHugeString sends message of size 1024*1024. Using Core JMS c= lient, activemq-client and qpid-jms-client in turn) > In case of testSmallString, Core and AMQP fails, OpenWire succeeds. The p= roblem here as I see it is that the test creates an address, but not a queu= e. There is queue autocreate turned on, so I'd expect queue to be created. = It is not, except for OpenWire. > In case of testHugeString, this fails for all. In case of Core and AMQP, = the cause is IMO the same as in testSmallString. In case of OpenWire, there= are the following scary error messages, reproduced below. > If I modify the test to create both address and queue, then all the tests= in the class pass. > The OpenWire error in testHugeString > {noformat} > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". > SLF4J: Defaulting to no-operation (NOP) logger implementation > SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further= details. > javax.jms.JMSException: Cannot find add info 115 on compactor or current = records > =09at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSup= port.java:54) > =09at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConne= ction.java:1399) > =09at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConne= ction.java:1428) > =09at org.apache.activemq.ActiveMQConnection.syncSendPacket(ActiveMQConne= ction.java:1323) > =09at org.apache.activemq.ActiveMQSession.send(ActiveMQSession.java:1967) > =09at org.apache.activemq.ActiveMQMessageProducer.send(ActiveMQMessagePro= ducer.java:288) > =09at org.apache.activemq.ActiveMQMessageProducer.send(ActiveMQMessagePro= ducer.java:223) > =09at org.apache.activemq.ActiveMQMessageProducerSupport.send(ActiveMQMes= sageProducerSupport.java:241) > =09at org.apache.activemq.artemis.tests.integration.jms.largemessage.JMSL= argeMessageTest.sendStringOfSize(JMSLargeMessageTest.java:88) > =09at org.apache.activemq.artemis.tests.integration.jms.largemessage.JMSL= argeMessageTest.testHugeString(JMSLargeMessageTest.java:62) > =09at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > =09at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImp= l.java:62) > =09at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcc= essorImpl.java:43) > =09at java.lang.reflect.Method.invoke(Method.java:498) > =09at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(Framewo= rkMethod.java:50) > =09at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveC= allable.java:12) > =09at org.junit.runners.model.FrameworkMethod.invokeExplosively(Framework= Method.java:47) > =09at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeM= ethod.java:17) > =09at org.junit.internal.runners.statements.FailOnTimeout$CallableStateme= nt.call(FailOnTimeout.java:298) > =09at org.junit.internal.runners.statements.FailOnTimeout$CallableStateme= nt.call(FailOnTimeout.java:292) > =09at java.util.concurrent.FutureTask.run(FutureTask.java:266) > =09at java.lang.Thread.run(Thread.java:748) > Caused by: java.lang.IllegalStateException: Cannot find add info 115 on c= ompactor or current records > =09at org.apache.activemq.artemis.core.journal.impl.JournalImpl.checkKnow= nRecordID(JournalImpl.java:994) > =09at org.apache.activemq.artemis.core.journal.impl.JournalImpl.appendUpd= ateRecord(JournalImpl.java:813) > =09at org.apache.activemq.artemis.core.journal.Journal.appendUpdateRecord= (Journal.java:98) > =09at org.apache.activemq.artemis.core.persistence.impl.journal.AbstractJ= ournalStorageManager.storeReference(AbstractJournalStorageManager.java:382) > =09at org.apache.activemq.artemis.core.postoffice.impl.PostOfficeImpl.pro= cessRoute(PostOfficeImpl.java:1155) > =09at org.apache.activemq.artemis.core.postoffice.impl.PostOfficeImpl.rou= te(PostOfficeImpl.java:820) > =09at org.apache.activemq.artemis.core.postoffice.impl.PostOfficeImpl.rou= te(PostOfficeImpl.java:722) > =09at org.apache.activemq.artemis.core.server.impl.ServerSessionImpl.doSe= nd(ServerSessionImpl.java:1688) > =09at org.apache.activemq.artemis.core.server.impl.ServerSessionImpl.send= (ServerSessionImpl.java:1365) > =09at org.apache.activemq.artemis.core.server.impl.ServerSessionImpl.send= (ServerSessionImpl.java:1309) > =09at org.apache.activemq.artemis.core.protocol.openwire.amq.AMQSession.l= ambda$send$0(AMQSession.java:357) > =09at org.apache.activemq.artemis.core.paging.impl.PagingStoreImpl.checkM= emory(PagingStoreImpl.java:706) > =09at org.apache.activemq.artemis.core.protocol.openwire.amq.AMQSession.s= end(AMQSession.java:353) > =09at org.apache.activemq.artemis.core.protocol.openwire.OpenWireConnecti= on$CommandProcessor.processMessage(OpenWireConnection.java:1458) > =09at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMessage.j= ava:768) > =09at org.apache.activemq.artemis.core.protocol.openwire.OpenWireConnecti= on.bufferReceived(OpenWireConnection.java:273) > =09at org.apache.activemq.artemis.core.remoting.server.impl.RemotingServi= ceImpl$DelegatingBufferHandler.bufferReceived(RemotingServiceImpl.java:642) > =09at org.apache.activemq.artemis.core.remoting.impl.netty.ActiveMQChanne= lHandler.channelRead(ActiveMQChannelHandler.java:68) > =09at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(Ab= stractChannelHandlerContext.java:362) > =09at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(Ab= stractChannelHandlerContext.java:348) > =09at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(Abst= ractChannelHandlerContext.java:340) > =09at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToM= essageDecoder.java:310) > =09at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessa= geDecoder.java:284) > =09at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(Ab= stractChannelHandlerContext.java:362) > =09at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(Ab= stractChannelHandlerContext.java:348) > =09at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(Abst= ractChannelHandlerContext.java:340) > =09at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(Def= aultChannelPipeline.java:1342) > =09at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(Ab= stractChannelHandlerContext.java:362) > =09at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(Ab= stractChannelHandlerContext.java:348) > =09at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChan= nelPipeline.java:934) > =09at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe= .epollInReady(AbstractEpollStreamChannel.java:979) > =09at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe$1.r= un(AbstractEpollChannel.java:338) > =09at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(Abstract= EventExecutor.java:163) > =09at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(Sing= leThreadEventExecutor.java:403) > =09at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:312) > =09at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThre= adEventExecutor.java:858) > =09... 1 more > {noformat} > Logs from broker > {noformat} > 14:57:02,113 ERROR [org.apache.activemq.artemis.core.journal.impl.Journal= Impl] appendAddRecord::java.lang.IllegalStateException: Can't write records= bigger than the bufferSize(501760) on the journal: java.lang.IllegalStateE= xception: Can't write records bigger than the bufferSize(501760) on the jou= rnal > at org.apache.activemq.artemis.core.io.buffer.TimedBuffer.checkSi= ze(TimedBuffer.java:198) [artemis-journal-2.4.0-SNAPSHOT.jar:2.4.0-SNAPSHOT= ] > at org.apache.activemq.artemis.core.io.AbstractSequentialFile.fit= s(AbstractSequentialFile.java:168) [artemis-journal-2.4.0-SNAPSHOT.jar:2.4.= 0-SNAPSHOT] > at org.apache.activemq.artemis.core.journal.impl.JournalImpl.swit= chFileIfNecessary(JournalImpl.java:2918) [artemis-journal-2.4.0-SNAPSHOT.ja= r:2.4.0-SNAPSHOT] > at org.apache.activemq.artemis.core.journal.impl.JournalImpl.appe= ndRecord(JournalImpl.java:2640) [artemis-journal-2.4.0-SNAPSHOT.jar:2.4.0-S= NAPSHOT] > at org.apache.activemq.artemis.core.journal.impl.JournalImpl.acce= ss$200(JournalImpl.java:88) [artemis-journal-2.4.0-SNAPSHOT.jar:2.4.0-SNAPS= HOT] > at org.apache.activemq.artemis.core.journal.impl.JournalImpl$1.ru= n(JournalImpl.java:778) [artemis-journal-2.4.0-SNAPSHOT.jar:2.4.0-SNAPSHOT] > at org.apache.activemq.artemis.utils.actors.OrderedExecutor.doTas= k(OrderedExecutor.java:42) [artemis-commons-2.4.0-SNAPSHOT.jar:2.4.0-SNAPSH= OT] > at org.apache.activemq.artemis.utils.actors.OrderedExecutor.doTas= k(OrderedExecutor.java:31) [artemis-commons-2.4.0-SNAPSHOT.jar:2.4.0-SNAPSH= OT] > at org.apache.activemq.artemis.utils.actors.ProcessorBase$Executo= rTask.run(ProcessorBase.java:53) [artemis-commons-2.4.0-SNAPSHOT.jar:2.4.0-= SNAPSHOT] > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolEx= ecutor.java:1149) [rt.jar:1.8.0_141] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolE= xecutor.java:624) [rt.jar:1.8.0_141] > at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_141] > 14:57:02,115 WARN [org.apache.activemq.artemis.core.protocol.openwire.am= q.AMQSession] Cannot find add info 115 on compactor or current records: jav= a.lang.IllegalStateException: Cannot find add info 115 on compactor or curr= ent records > at org.apache.activemq.artemis.core.journal.impl.JournalImpl.chec= kKnownRecordID(JournalImpl.java:994) [artemis-journal-2.4.0-SNAPSHOT.jar:2.= 4.0-SNAPSHOT] > at org.apache.activemq.artemis.core.journal.impl.JournalImpl.appe= ndUpdateRecord(JournalImpl.java:813) [artemis-journal-2.4.0-SNAPSHOT.jar:2.= 4.0-SNAPSHOT] > at org.apache.activemq.artemis.core.journal.Journal.appendUpdateR= ecord(Journal.java:98) [artemis-journal-2.4.0-SNAPSHOT.jar:2.4.0-SNAPSHOT] > at org.apache.activemq.artemis.core.persistence.impl.journal.Abst= ractJournalStorageManager.storeReference(AbstractJournalStorageManager.java= :382) [artemis-server-2.4.0-SNAPSHOT.jar:2.4.0-SNAPSHOT] > at org.apache.activemq.artemis.core.postoffice.impl.PostOfficeImp= l.processRoute(PostOfficeImpl.java:1155) [artemis-server-2.4.0-SNAPSHOT.jar= :2.4.0-SNAPSHOT] > at org.apache.activemq.artemis.core.postoffice.impl.PostOfficeImp= l.route(PostOfficeImpl.java:820) [artemis-server-2.4.0-SNAPSHOT.jar:2.4.0-S= NAPSHOT] > at org.apache.activemq.artemis.core.postoffice.impl.PostOfficeImp= l.route(PostOfficeImpl.java:722) [artemis-server-2.4.0-SNAPSHOT.jar:2.4.0-S= NAPSHOT] > at org.apache.activemq.artemis.core.server.impl.ServerSessionImpl= .doSend(ServerSessionImpl.java:1688) [artemis-server-2.4.0-SNAPSHOT.jar:2.4= .0-SNAPSHOT] > at org.apache.activemq.artemis.core.server.impl.ServerSessionImpl= .send(ServerSessionImpl.java:1365) [artemis-server-2.4.0-SNAPSHOT.jar:2.4.0= -SNAPSHOT] > at org.apache.activemq.artemis.core.server.impl.ServerSessionImpl= .send(ServerSessionImpl.java:1309) [artemis-server-2.4.0-SNAPSHOT.jar:2.4.0= -SNAPSHOT] > at org.apache.activemq.artemis.core.protocol.openwire.amq.AMQSess= ion.lambda$send$0(AMQSession.java:357) [artemis-openwire-protocol-2.4.0-SNA= PSHOT.jar:] > at org.apache.activemq.artemis.core.paging.impl.PagingStoreImpl.c= heckMemory(PagingStoreImpl.java:706) [artemis-server-2.4.0-SNAPSHOT.jar:2.4= .0-SNAPSHOT] > at org.apache.activemq.artemis.core.protocol.openwire.amq.AMQSess= ion.send(AMQSession.java:353) [artemis-openwire-protocol-2.4.0-SNAPSHOT.jar= :] > at org.apache.activemq.artemis.core.protocol.openwire.OpenWireCon= nection$CommandProcessor.processMessage(OpenWireConnection.java:1458) [arte= mis-openwire-protocol-2.4.0-SNAPSHOT.jar:] > at org.apache.activemq.command.ActiveMQMessage.visit(ActiveMQMess= age.java:768) [activemq-client-5.14.5.jar:5.14.5] > at org.apache.activemq.artemis.core.protocol.openwire.OpenWireCon= nection.bufferReceived(OpenWireConnection.java:273) [artemis-openwire-proto= col-2.4.0-SNAPSHOT.jar:] > at org.apache.activemq.artemis.core.remoting.server.impl.Remoting= ServiceImpl$DelegatingBufferHandler.bufferReceived(RemotingServiceImpl.java= :642) [artemis-server-2.4.0-SNAPSHOT.jar:2.4.0-SNAPSHOT] > at org.apache.activemq.artemis.core.remoting.impl.netty.ActiveMQC= hannelHandler.channelRead(ActiveMQChannelHandler.java:68) [artemis-core-cli= ent-2.4.0-SNAPSHOT.jar:2.4.0-SNAPSHOT] > at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRe= ad(AbstractChannelHandlerContext.java:362) [netty-all-4.1.14.Final.jar:4.1.= 14.Final] > at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRe= ad(AbstractChannelHandlerContext.java:348) [netty-all-4.1.14.Final.jar:4.1.= 14.Final] > at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead= (AbstractChannelHandlerContext.java:340) [netty-all-4.1.14.Final.jar:4.1.14= .Final] > at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(By= teToMessageDecoder.java:310) [netty-all-4.1.14.Final.jar:4.1.14.Final] > at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteTo= MessageDecoder.java:284) [netty-all-4.1.14.Final.jar:4.1.14.Final] > at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRe= ad(AbstractChannelHandlerContext.java:362) [netty-all-4.1.14.Final.jar:4.1.= 14.Final] > at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRe= ad(AbstractChannelHandlerContext.java:348) [netty-all-4.1.14.Final.jar:4.1.= 14.Final] > at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead= (AbstractChannelHandlerContext.java:340) [netty-all-4.1.14.Final.jar:4.1.14= .Final] > at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRea= d(DefaultChannelPipeline.java:1342) [netty-all-4.1.14.Final.jar:4.1.14.Fina= l] > at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRe= ad(AbstractChannelHandlerContext.java:362) [netty-all-4.1.14.Final.jar:4.1.= 14.Final] > at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRe= ad(AbstractChannelHandlerContext.java:348) [netty-all-4.1.14.Final.jar:4.1.= 14.Final] > at io.netty.channel.DefaultChannelPipeline.fireChannelRead(Defaul= tChannelPipeline.java:934) [netty-all-4.1.14.Final.jar:4.1.14.Final] > at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamU= nsafe.epollInReady(AbstractEpollStreamChannel.java:979) [netty-all-4.1.14.F= inal.jar:4.1.14.Final] > at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsaf= e$1.run(AbstractEpollChannel.java:338) [netty-all-4.1.14.Final.jar:4.1.14.F= inal] > at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(Abs= tractEventExecutor.java:163) [netty-all-4.1.14.Final.jar:4.1.14.Final] > at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks= (SingleThreadEventExecutor.java:403) [netty-all-4.1.14.Final.jar:4.1.14.Fin= al] > at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:= 312) [netty-all-4.1.14.Final.jar:4.1.14.Final] > at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(Singl= eThreadEventExecutor.java:858) [netty-all-4.1.14.Final.jar:4.1.14.Final] > at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_141] > 14:57:02,456 WARN [org.apache.activemq.artemis.core.server] AMQ222061: C= lient connection failed, clearing up resources for session deb44765-97b9-11= e7-9b2d-185e0fec8ce5 > 14:57:02,456 WARN [org.apache.activemq.artemis.core.server] AMQ222061: C= lient connection failed, clearing up resources for session de860bda-97b9-11= e7-8f5e-185e0fec8ce5 > 14:57:02,456 WARN [org.apache.activemq.artemis.core.server] AMQ222107: C= leared up resources for session deb44765-97b9-11e7-9b2d-185e0fec8ce5 > 14:57:02,457 WARN [org.apache.activemq.artemis.core.server] AMQ222061: C= lient connection failed, clearing up resources for session ID:nixos-45797-1= 505221021784-1:1:-1 > 14:57:02,457 WARN [org.apache.activemq.artemis.core.server] AMQ222107: C= leared up resources for session ID:nixos-45797-1505221021784-1:1:-1 > 14:57:02,457 WARN [org.apache.activemq.artemis.core.server] AMQ222107: C= leared up resources for session de860bda-97b9-11e7-8f5e-185e0fec8ce5 > 14:57:02,474 WARN [org.apache.activemq.artemis.core.server] AMQ222061: C= lient connection failed, clearing up resources for session ID:nixos-45797-1= 505221021784-1:1:1 > 14:57:02,474 WARN [org.apache.activemq.artemis.core.server] AMQ222107: C= leared up resources for session ID:nixos-45797-1505221021784-1:1:1 > {noformat} -- This message was sent by Atlassian JIRA (v6.4.14#64029)