dan-s1 commented on PR #7752:
URL: https://github.com/apache/nifi/pull/7752#issuecomment-1726403205
Another option mentioned in the ticket involves not using the TempDir
annotation and instead using
```
private static Path tempDir;
@BeforeAll
public static void before() throws IOException {
tempDir = Files.createTempDirectory(null);
}
@AfterAll
public static void after() {
tempDir.toFile().delete();
}
```
--
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]