You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by kw...@apache.org on 2021/10/11 14:13:43 UTC

[jackrabbit-filevault] branch bugfix/JCRVLT-565-multithreading-fix created (now 241f7e1)

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

kwin pushed a change to branch bugfix/JCRVLT-565-multithreading-fix
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git.


      at 241f7e1  JCRVLT-565 use isolated FSPackage registry directories per thread

This branch includes the following new commits:

     new 241f7e1  JCRVLT-565 use isolated FSPackage registry directories per thread

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[jackrabbit-filevault] 01/01: JCRVLT-565 use isolated FSPackage registry directories per thread

Posted by kw...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch bugfix/JCRVLT-565-multithreading-fix
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git

commit 241f7e1f298c4b9e8d7db2e1d44b8ef806a46f1c
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Mon Oct 11 16:13:32 2021 +0200

    JCRVLT-565 use isolated FSPackage registry directories per thread
    
    Make tests succeed which may be executed in parallel in multiple thread
---
 .../vault/packaging/integration/CrossRegistryDependenciesIT.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vault-core/src/test/java/org/apache/jackrabbit/vault/packaging/integration/CrossRegistryDependenciesIT.java b/vault-core/src/test/java/org/apache/jackrabbit/vault/packaging/integration/CrossRegistryDependenciesIT.java
index 5d102ec..e20707b 100644
--- a/vault-core/src/test/java/org/apache/jackrabbit/vault/packaging/integration/CrossRegistryDependenciesIT.java
+++ b/vault-core/src/test/java/org/apache/jackrabbit/vault/packaging/integration/CrossRegistryDependenciesIT.java
@@ -32,7 +32,7 @@ import org.junit.Test;
  */
 public class CrossRegistryDependenciesIT extends IntegrationTestBase {
 
-    private static final File DIR_REGISTRY_HOME = new File("target/registry");
+    private static final File DIR_REGISTRY_HOME = new File("target/fspackageregistry-" + System.getProperty("repoSuffix", "fork1"));
 
     private FSPackageRegistry fsregistry;