summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/hashserv/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/hashserv/__init__.py')
-rw-r--r--bitbake/lib/hashserv/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/hashserv/__init__.py b/bitbake/lib/hashserv/__init__.py
index 7ec9b64419..544bc86b16 100644
--- a/bitbake/lib/hashserv/__init__.py
+++ b/bitbake/lib/hashserv/__init__.py
@@ -21,6 +21,8 @@ class HashEquivalenceServer(BaseHTTPRequestHandler):
21 def opendb(self): 21 def opendb(self):
22 self.db = sqlite3.connect(self.dbname) 22 self.db = sqlite3.connect(self.dbname)
23 self.db.row_factory = sqlite3.Row 23 self.db.row_factory = sqlite3.Row
24 self.db.execute("PRAGMA synchronous = OFF;")
25 self.db.execute("PRAGMA journal_mode = MEMORY;")
24 26
25 def do_GET(self): 27 def do_GET(self):
26 try: 28 try: