Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
Relax sqlite `synchronous` flag
✗ CI failure Yorgos Saslis committed 2 months ago
commit f9b0590f35a6f81245a20c884993c77ad659b3ce
parent b04f487b3ae2efcd23f52f8138abe32e73a718fd
1 failed (1 total) View logs
1 file changed +1 -0
modified crates/radicle/src/node/db.rs
@@ -123,6 +123,7 @@ impl Database {
            }
            JournalMode::WriteAheadLog => {
                self.db.execute("PRAGMA journal_mode = WAL;")?;
+
                self.db.execute("PRAGMA synchronous = NORMAL;")?;
            }
        }
        Ok(self)