Skip to content

Commit

Permalink
Update FederationManager.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bgprudhomme authored Aug 5, 2024
1 parent 1ca38e2 commit 3b5dcd4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ public FederationManager() {
public void init(FedX federation, FederationContext federationContext) {
this.federation = federation;
this.federationContext = federationContext;
this.executor = Executors.newThreadPerTaskExecutor(new NamingThreadFactory("FedX Executor"));
// Refactoring this causes ServicesTest to hang forever (https://github.com/ponder-lab/rdf4j/actions/runs/10239404923/job/28324948852?pr=2)
this.executor = Executors.newCachedThreadPool(new NamingThreadFactory("FedX Executor"));

updateFederationType();
reset();
Expand Down

0 comments on commit 3b5dcd4

Please sign in to comment.