提交 b3991d9d 编写于 作者: C CalvinKirs

Time is too small and the task is not finished

上级 c6a686a7
......@@ -88,11 +88,17 @@ public class TaskResponseServiceTest {
@After
public void after() {
try {
Thread.sleep(60000);
} catch (InterruptedException ignored) {
Thread.currentThread().interrupt();
long startTime = System.currentTimeMillis();
long maxWaitTime = 3 * 60 * 1000;
while (System.currentTimeMillis() - maxWaitTime - startTime < 0) {
if (taskResponseService.getEventQueue().size() == 0) {
return;
}
}
Assert.assertEquals(0, taskResponseService.getEventQueue().size());
taskResponseService.stop();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册