You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/07/27 15:36:43 UTC

[camel] branch main updated: CAMEL-19666: stop auto-deleting queues in persistent brokers (#10863)

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 7f6eff0c355 CAMEL-19666: stop auto-deleting queues in persistent brokers (#10863)
7f6eff0c355 is described below

commit 7f6eff0c3553aa471d9ec9531b1de07075da1d29
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Thu Jul 27 17:36:37 2023 +0200

    CAMEL-19666: stop auto-deleting queues in persistent brokers (#10863)
---
 .../camel/test/infra/artemis/services/ArtemisPersistentVMService.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisPersistentVMService.java b/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisPersistentVMService.java
index 2260e5db8e4..09779e0d9b2 100644
--- a/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisPersistentVMService.java
+++ b/test-infra/camel-test-infra-artemis/src/test/java/org/apache/camel/test/infra/artemis/services/ArtemisPersistentVMService.java
@@ -45,6 +45,7 @@ public class ArtemisPersistentVMService extends AbstractArtemisEmbeddedService {
         configuration.addAddressSetting("#",
                 new AddressSettings()
                         .setAddressFullMessagePolicy(AddressFullMessagePolicy.FAIL)
+                        .setAutoDeleteQueues(false)
                         .setDeadLetterAddress(SimpleString.toSimpleString("DLQ"))
                         .setExpiryAddress(SimpleString.toSimpleString("ExpiryQueue")));