kishoreg opened a new issue #5294:
URL: https://github.com/apache/incubator-pinot/issues/5294
The startZookeeper command deletes the directory on exit. We should not
delete it and add an option to clean the directory. Also, it does not use the
-dataDir option.
``` public static File createAutoDeleteTempDir() {
File tempdir = Files.createTempDir();
tempdir.delete();
tempdir.mkdir();
tempdir.deleteOnExit();
return tempdir;
}
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]