fix: do not run auto_vacuum on read-only connections

This commit is contained in:
Greg Heartsfield
2023-01-03 17:32:55 -06:00
parent b7c8737166
commit 3dd0f2c9c6
2 changed files with 4 additions and 2 deletions
+3
View File
@@ -364,6 +364,9 @@ pub async fn db_writer(
/// Persist an event to the database, returning rows added.
pub fn write_event(conn: &mut PooledConnection, e: &Event) -> Result<usize> {
// enable auto vacuum
conn.execute_batch("pragma auto_vacuum = FULL")?;
// start transaction
let tx = conn.transaction()?;
// get relevant fields from event and convert to blobs.