huangdx0726 commented on PR #19949:
URL: https://github.com/apache/shardingsphere/pull/19949#issuecomment-1207814196
the method `assertStart` of `IncrementalTaskTest` is blocked . it's
blocked line in `IncrementalTask`
```java
private void waitForResult(final Future<?> future) {
try {
future.get(); //blocked line
} catch (final InterruptedException ignored) {
} catch (final ExecutionException ex) {
throw new PipelineJobExecutionException(String.format("Task %s
execute failed ", taskId), ex.getCause());
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]