We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc701a commit 02804caCopy full SHA for 02804ca
1 file changed
ffi/src/lib.rs
@@ -30,7 +30,9 @@ impl ValoriEngine {
30
fn new(path: String) -> PyResult<Self> {
31
let mut config = NodeConfig::default();
32
let wal_path = std::path::PathBuf::from(format!("{}/wal.log", path));
33
+ let event_log_path = std::path::PathBuf::from(format!("{}/events.log", path));
34
config.wal_path = Some(wal_path);
35
+ config.event_log_path = Some(event_log_path);
36
37
// Ensure consistent configuration constants
38
config.max_records = MAX_RECORDS;
0 commit comments