Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ interface ThrowingRunnable {
log.warn("Failure in thread " + t.getName(), e);
return;
}
if (te.getCause() instanceof InterruptedException) {
log.debug("Failure in thread " + t.getName(), e);
return;
}
}
log.error("Failure in thread " + t.getName(), e);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,8 @@ public History getWorkflowExecutionHistory(WorkflowExecution execution) {
}

/**
* Returns the default worker created for each test method.
* This worker listens to the default task queue which is obtainable
* via the {@link #getTaskQueue()} method.
* Returns the default worker created for each test method. This worker listens to the default
* task queue which is obtainable via the {@link #getTaskQueue()} method.
*/
public Worker getWorker() {
return testEnvironment.getWorkerFactory().getWorker(getTaskQueue());
Expand Down