This is an automated email from the ASF dual-hosted git repository. rouazana pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 19e4b4559021f31c9c2fc2564fb28c7e03af4463 Author: Rene Cordier <[email protected]> AuthorDate: Thu Jul 18 10:00:15 2019 +0700 JAMES-2829 adjust duration limit for the concurrent test with heavy blob read and delete The CI seems to break sometimes as the duration is not enough for object storage test cases --- .../test/java/org/apache/james/blob/api/DeleteBlobStoreContract.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/blob/blob-api/src/test/java/org/apache/james/blob/api/DeleteBlobStoreContract.java b/server/blob/blob-api/src/test/java/org/apache/james/blob/api/DeleteBlobStoreContract.java index 58d8e32..1548098 100644 --- a/server/blob/blob-api/src/test/java/org/apache/james/blob/api/DeleteBlobStoreContract.java +++ b/server/blob/blob-api/src/test/java/org/apache/james/blob/api/DeleteBlobStoreContract.java @@ -169,6 +169,6 @@ public interface DeleteBlobStoreContract { })) .threadCount(10) .operationCount(10) - .runSuccessfullyWithin(Duration.ofMinutes(1)); + .runSuccessfullyWithin(Duration.ofMinutes(3)); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
