Skip to content
Snippets Groups Projects
Commit 87273cb5 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

example for endless wait bug

parent bd5578d0
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@ import teetime.util.Pair;
* Represents a exception, which is thrown by an analysis, if any problems occured within its execution.
* A collection of thrown exceptions within the analysis can be retrieved with {@link #getThrownExceptions()}.
*
* @since 1.1
*/
public class AnalysisException extends RuntimeException {
......
......@@ -11,7 +11,7 @@ public class ExceptionTestConfiguration extends AnalysisConfiguration {
ExceptionTestProducerStage third = new ExceptionTestProducerStage();
PIPE_FACTORY_REGISTRY.getPipeFactory(ThreadCommunication.INTER, PipeOrdering.QUEUE_BASED, false)
.create(first.getOutputPort(), second.getInputPort());
.create(first.getOutputPort(), second.getInputPort(), 4);
// this.addThreadableStage(new ExceptionTestStage());
this.addThreadableStage(first);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment