Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TeeTime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeeTime
TeeTime
Commits
87273cb5
Commit
87273cb5
authored
10 years ago
by
Nelson Tavares de Sousa
Browse files
Options
Downloads
Patches
Plain Diff
example for endless wait bug
parent
bd5578d0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/teetime/framework/AnalysisException.java
+1
-0
1 addition, 0 deletions
src/main/java/teetime/framework/AnalysisException.java
src/test/java/teetime/framework/ExceptionTestConfiguration.java
+1
-1
1 addition, 1 deletion
...st/java/teetime/framework/ExceptionTestConfiguration.java
with
2 additions
and
1 deletion
src/main/java/teetime/framework/AnalysisException.java
+
1
−
0
View file @
87273cb5
...
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
src/test/java/teetime/framework/ExceptionTestConfiguration.java
+
1
−
1
View file @
87273cb5
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment