Executor fix

This commit is contained in:
2025-04-24 10:37:59 +02:00
parent ceb9342b45
commit 6a9f64439f

View File

@@ -41,10 +41,11 @@ public class LazyFsIT {
LazyFs lazyFs1;
LazyFs lazyFs2;
private final ExecutorService executor = Executors.newCachedThreadPool();
ExecutorService executor;
@BeforeEach
void setup(TestInfo testInfo) throws IOException, InterruptedException, TimeoutException {
executor = Executors.newCachedThreadPool();
data1 = Files.createTempDirectory("dhfsdata").toFile();
data2 = Files.createTempDirectory("dhfsdata").toFile();
data1Lazy = Files.createTempDirectory("lazyfsroot").toFile();