diff --git a/tubesync/sync/tasks.py b/tubesync/sync/tasks.py index d19b9f70..34a723d2 100644 --- a/tubesync/sync/tasks.py +++ b/tubesync/sync/tasks.py @@ -209,13 +209,13 @@ def migrate_queues(): def save_model(instance): if 'sqlite' != db_vendor: - with atomic(): + with atomic(durable=False): instance.save() return # work around for SQLite and its many # "database is locked" errors - with atomic(): + with atomic(durable=False): instance.save() time.sleep(random.expovariate(1.5))