13
0
geforkt von Mirrors/Velocity

Fix flaky obtainTasksFromPlugin() test

Dieser Commit ist enthalten in:
Andrew Steinborn 2023-05-15 01:21:30 -04:00
Ursprung 92ae25b8ac
Commit 40b76c6332

Datei anzeigen

@ -76,12 +76,12 @@ class VelocitySchedulerTest {
scheduler.buildTask(FakePluginManager.PLUGIN_A, task -> {
runningLatch.countDown();
task.cancel();
try {
endingLatch.await();
} catch (InterruptedException ignored) {
Thread.currentThread().interrupt();
}
task.cancel();
}).delay(50, TimeUnit.MILLISECONDS)
.repeat(Duration.ofMillis(5))
.schedule();