Skip to content
Snippets Groups Projects
Commit dfea77cf authored by Christian Wulf's avatar Christian Wulf
Browse files

removed capacity argument

parent 3d3bb429
Branches
No related tags found
No related merge requests found
...@@ -60,10 +60,10 @@ public class RecordReaderConfiguration extends Configuration { ...@@ -60,10 +60,10 @@ public class RecordReaderConfiguration extends Configuration {
// connect stages // connect stages
this.pipeFactory.getPipeFactory(ThreadCommunication.INTRA, PipeOrdering.ARBITRARY, false) this.pipeFactory.getPipeFactory(ThreadCommunication.INTRA, PipeOrdering.ARBITRARY, false)
.create(initialElementProducer.getOutputPort(), dir2RecordsFilter.getInputPort(), 1); .create(initialElementProducer.getOutputPort(), dir2RecordsFilter.getInputPort());
this.pipeFactory.getPipeFactory(ThreadCommunication.INTRA, PipeOrdering.ARBITRARY, false) this.pipeFactory.getPipeFactory(ThreadCommunication.INTRA, PipeOrdering.ARBITRARY, false)
.create(dir2RecordsFilter.getOutputPort(), collector.getInputPort(), 1); .create(dir2RecordsFilter.getOutputPort(), collector.getInputPort());
return initialElementProducer; return initialElementProducer;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment