- moved timeout handling responsibility from for nat tests from caller to the library
[oweals/gnunet.git] / src / peerstore / plugin_peerstore_sqlite.c
index 3dd67024bb1eaff3e0b2df4ed1a40b883ad5c45a..fdf25c79c52603f025340b6832c61a2a1914a54a 100644 (file)
@@ -435,7 +435,7 @@ database_setup (struct Plugin *plugin)
   }
 
   sql_exec (plugin->dbh, "PRAGMA temp_store=MEMORY");
-  sql_exec (plugin->dbh, "PRAGMA synchronous=NORMAL");
+  sql_exec (plugin->dbh, "PRAGMA synchronous=OFF");
   sql_exec (plugin->dbh, "PRAGMA legacy_file_format=OFF");
   sql_exec (plugin->dbh, "PRAGMA auto_vacuum=INCREMENTAL");
   sql_exec (plugin->dbh, "PRAGMA encoding=\"UTF-8\"");