chrisdutz commented on code in PR #10742:
URL: https://github.com/apache/iotdb/pull/10742#discussion_r1281462187
##########
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/executable/ExecutableManager.java:
##########
@@ -227,6 +228,8 @@ protected void saveToDir(ByteBuffer byteBuffer, String
destination) throws IOExc
try {
Path path = Paths.get(destination);
Files.deleteIfExists(path);
+ // Ensure the target directory exists.
+ SystemFileFactory.INSTANCE.makeDirIfNecessary(destination);
Review Comment:
Thanks for re-reporting that ... now that you mention it, you did report
that on the old PR, that I dropped, because I wanted to keep the noise on the
list to a mimimum, but in the end couldn't completely as my fork didn't run the
Workflows :-( ... I wasn't ignoring you intentionally ;-)
--
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]