Re: Addresses are not getting deleted when autoDeleteAddresses is set true

2024-06-14 Thread Justin Bertram
I used the instructions which you outlined to reproduce the issue, but from what I could tell the proper configuration was not applied to the broker. The address wasn't deleted, but that's because it was using the _default_ configuration where auto-delete was disabled. I set up my own local instanc

Re: Addresses are not getting deleted when autoDeleteAddresses is set true

2024-06-13 Thread Alexander Weichart
Hi. Are there any updates on this? Am Mi, 5. Jun 2024, um 11:39, schrieb Alexander Weichart: > Changing the address matcher did unfortunately not work. > Therefore, I created a minimum reproducible example for the bug. > The code & description can be found here: > https://github.com/AlexW00/spr

Re: Addresses are not getting deleted when autoDeleteAddresses is set true

2024-06-05 Thread Alexander Weichart
Changing the address matcher did unfortunately not work. Therefore, I created a minimum reproducible example for the bug. The code & description can be found here: https://github.com/AlexW00/spring-stomp-artemis-address-bug. Am Mo, 3. Jun 2024, um 17:52, schrieb Justin Bertram: > Since your add

Re: Addresses are not getting deleted when autoDeleteAddresses is set true

2024-06-03 Thread Justin Bertram
Since your address-setting match is using "/" characters (i.e. in "/tmp/#") you should ostensibly define the wildcard syntax [1] to use them as well, e.g.: true / # * The default wildcard syntax uses "." characters so if you wanted to use the default syntax your match wo

Re: Addresses are not getting deleted when autoDeleteAddresses is set true

2024-05-31 Thread Alexander Weichart
Note: I‘m using Artemis as a Relay-Broker for Spring boot to send websocket messages via the STOMP protocol (https://docs.spring.io/spring-framework/reference/web/websocket/stomp/handle-broker-relay.html). These automatically created addresses to not get cleaned up, while the queues do. Am Fr

Re: Addresses are not getting deleted when autoDeleteAddresses is set true

2024-05-31 Thread Alexander Weichart
Hi Bertram, thanks for trying to reproduce the issue as well as the explaining comments related to the changes. What did you mean with step 3 („updated the wildcard config…“)? Maybe this is my issue? If not, I will try to provide a minimum reproducible setup in order to track down the issue. Am

Re: Addresses are not getting deleted when autoDeleteAddresses is set true

2024-05-31 Thread Justin Bertram
I just tested this and it works fine as far as I can tell. Here's what I did: 1) created a fresh instance of ActiveMQ Artemis 2.33.0 2) copied your settings into broker.xml 3) updated the wildcard configuration to account for the '/' in the address settings match 4) started the broker 5) used

Addresses are not getting deleted when autoDeleteAddresses is set true

2024-05-31 Thread Alexander Weichart
**Basic bug info** When configuring a broker to auto-delete expired addresses like this: ```xml 30 true 3 true true 3 -1 ``` Artemis - correctly deletes automatically created, expired, queues - **but does not** delete automatically created, expired, addresses (e.g