You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error message: thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: IoError(Os { code: 2, kind: NotFound, message: "No such file or directory" })', src/block/db/kv.rs:56:25 note: run withRUST_BACKTRACE=1environment variable to display a backtrace
The commit function is at line 56
The text was updated successfully, but these errors were encountered:
The error is "No such file or directory", which means that the destination directory does not exist when calling commit. Can you confirm that the directory exists on disk before you call the commit function? Are you using rkv from multiple threads?
The below code fails once it calls commit function. What is it that I am not doing well here. Looks like I am omitting something important
The call that leads to this issue:
The error message:
thread 'main' panicked at 'called
Result::unwrap()on an
Errvalue: IoError(Os { code: 2, kind: NotFound, message: "No such file or directory" })', src/block/db/kv.rs:56:25 note: run with
RUST_BACKTRACE=1environment variable to display a backtrace
The commit function is at line 56
The text was updated successfully, but these errors were encountered: