mjsax commented on code in PR #21636:
URL: https://github.com/apache/kafka/pull/21636#discussion_r2887397574
##########
streams/src/test/java/org/apache/kafka/streams/state/internals/AbstractRocksDBWindowStoreTest.java:
##########
@@ -602,7 +602,7 @@ public void testRestore() throws Exception {
windowStore.close();
// remove local store image
- Utils.delete(baseDir);
+ Utils.delete(new File(baseDir, STORE_NAME));
Review Comment:
We delete a directory "too high" in the hierarchy, and thus when we later
try to create a segment we cannot, because the parent directory does not exist.
--
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]