File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ def collect(msg):
219219 assert bucket == []
220220
221221
222- def test_stirring_dodge_od_reading () -> None :
222+ def test_stirring_will_try_to_restart_and_dodge_od_reading () -> None :
223223 from pioreactor .background_jobs .od_reading import start_od_reading
224224
225225 exp = "test_stirring_will_try_to_restart_and_dodge_od_reading"
Original file line number Diff line number Diff line change @@ -344,9 +344,7 @@ def __enter__(self):
344344 self .cursor .executescript (
345345 """
346346 PRAGMA busy_timeout = 5000;
347- PRAGMA synchronous = 1; -- aka NORMAL, recommended when using WAL
348347 PRAGMA temp_store = 2; -- stop writing small files to disk, use mem
349- PRAGMA foreign_keys = ON;
350348 PRAGMA cache_size = -4000;
351349 """
352350 )
@@ -633,7 +631,6 @@ def __init__(self) -> None:
633631 self .conn .executescript (
634632 """
635633 PRAGMA busy_timeout = 5000;
636- PRAGMA synchronous = NORMAL;
637634 PRAGMA temp_store = 2;
638635 PRAGMA foreign_keys = ON;
639636 PRAGMA cache_size = -4000;
You can’t perform that action at this time.
0 commit comments