Skip to content

Commit

Permalink
Added missing module declaration for jenax-resources-macros to jenax-bom
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklakan committed Dec 3, 2024
1 parent 2931dc4 commit 7708775
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ protected Iterator<T> prefetch() throws Exception {
return batch.isEmpty() ? null : batch.iterator();
}

// FIXME The worker is blocked while retrieving so in that case
// any close signal won't get through
// Note: The worker is blocked while retrieving so in that case any close signal won't get through
@Override
public void close() {
helper.submit(() -> Iter.close(getDelegate()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ private void scheduleNextTask() {
count++;

Binding binding = input.next();
// System.err.println(String.format("Thread %s: Starting task for: %s", Thread.currentThread().getName(), binding));
// System.err.println(String.format("Thread %s: Starting task for: %s", Thread.currentThread().getName(), binding));
ExecutionContext execCxt = getExecContext();
ExecutionContext isolatedExecCxt = new ExecutionContext(execCxt.getContext(), execCxt.getActiveGraph(), execCxt.getDataset(), execCxt.getExecutor());
Prefetch task = new Prefetch(binding, nextStage(binding, isolatedExecCxt));
Expand Down
5 changes: 5 additions & 0 deletions jenax-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,11 @@
<artifactId>jenax-resources-servicedescription</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.aksw.jenax</groupId>
<artifactId>jenax-resources-macros</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.aksw.jenax</groupId>
<artifactId>jenax-arq-connection-extra</artifactId>
Expand Down

0 comments on commit 7708775

Please sign in to comment.