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/06/07 05:36:26 UTC

[camel] 02/02: (chores) camel-test-infra-artemis: increase the maximum disk usage accepted

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

commit 9d0108757c4f6c27817dd0ce4a07ad93abcff511
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue Jun 6 17:26:59 2023 +0200

    (chores) camel-test-infra-artemis: increase the maximum disk usage accepted
---
 .../camel/test/infra/artemis/services/ArtemisPersistentVMService.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 c042f56c255..e329966889c 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
@@ -35,7 +35,7 @@ public class ArtemisPersistentVMService extends AbstractArtemisEmbeddedService {
 
         configuration.setPersistenceEnabled(true);
         configuration.setJournalType(JournalType.NIO);
-
+        configuration.setMaxDiskUsage(98);
 
         try {
             configuration.addAcceptorConfiguration("in-vm", brokerURL);