From abaeb11c3defd65b240dd1eda689a5c18fd2eb61 Mon Sep 17 00:00:00 2001 From: tgmichel Date: Mon, 20 Feb 2023 14:49:33 +0100 Subject: [PATCH] Tmp disable threads pragma --- client/db/src/sql/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/db/src/sql/mod.rs b/client/db/src/sql/mod.rs index 571e2f86ae..91caa7bb8b 100644 --- a/client/db/src/sql/mod.rs +++ b/client/db/src/sql/mod.rs @@ -131,7 +131,7 @@ where // https://www.sqlite.org/pragma.html#pragma_analysis_limit .pragma("analysis_limit", "1000") // https://www.sqlite.org/pragma.html#pragma_threads - .pragma("threads", config.thread_count.to_string()) + // .pragma("threads", config.thread_count.to_string()) // https://www.sqlite.org/pragma.html#pragma_threads .pragma("temp_store", "memory") // https://www.sqlite.org/wal.html