Phillippko commented on code in PR #7892:
URL: https://github.com/apache/ignite-3/pull/7892#discussion_r3000952646
##########
modules/raft/src/main/java/org/apache/ignite/raft/jraft/storage/logit/storage/file/assit/Checkpoint.java:
##########
@@ -52,6 +53,7 @@ public Checkpoint(final String path, RaftOptions raftOptions)
{
public abstract boolean decode(final byte[] bs);
public synchronized boolean save() throws IOException {
+ new File(this.path).getParentFile().mkdirs();
Review Comment:
Replaced with a proper fix
checkpoint was saved before new storage started and created directories
Also I passed URI instead of groupID, fixed
--
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]