This is an automated email from the ASF dual-hosted git repository. quantranhong1999 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit f3e75dc7efc85fb67c926183bd0da920940b736c Author: Benoit TELLIER <[email protected]> AuthorDate: Thu Sep 17 09:39:12 2026 +0200 [BUILD] Blob: 20 -> 10 operation count for big saves --- .../org/apache/james/blob/api/ReadSaveBlobStoreDAOContract.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/blob/blob-api/src/test/java/org/apache/james/blob/api/ReadSaveBlobStoreDAOContract.java b/server/blob/blob-api/src/test/java/org/apache/james/blob/api/ReadSaveBlobStoreDAOContract.java index 4ca331717d..ce99703f47 100644 --- a/server/blob/blob-api/src/test/java/org/apache/james/blob/api/ReadSaveBlobStoreDAOContract.java +++ b/server/blob/blob-api/src/test/java/org/apache/james/blob/api/ReadSaveBlobStoreDAOContract.java @@ -334,7 +334,7 @@ public interface ReadSaveBlobStoreDAOContract { (threadNumber, step) -> checkConcurrentSaveOperation(bytes.payload()) ) .threadCount(10) - .operationCount(20) + .operationCount(10) .runSuccessfullyWithin(Duration.ofMinutes(10)); } @@ -348,7 +348,7 @@ public interface ReadSaveBlobStoreDAOContract { (threadNumber, step) -> checkConcurrentSaveOperation(bytes.payload()) ) .threadCount(10) - .operationCount(20) + .operationCount(10) .runSuccessfullyWithin(Duration.ofMinutes(2)); } @@ -362,7 +362,7 @@ public interface ReadSaveBlobStoreDAOContract { (threadNumber, step) -> checkConcurrentSaveOperation(bytes.payload()) ) .threadCount(10) - .operationCount(20) + .operationCount(10) .runSuccessfullyWithin(Duration.ofMinutes(2)); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
