From fefec202d1bb4b297fc0d1de809b2ba3ea978c19 Mon Sep 17 00:00:00 2001 From: Marian Moravcik Date: Tue, 28 Feb 2023 19:53:16 +0100 Subject: [PATCH] no log: added autorollback to postgresql --- bazarr/app/database.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bazarr/app/database.py b/bazarr/app/database.py index 76741fae7..8f266837b 100644 --- a/bazarr/app/database.py +++ b/bazarr/app/database.py @@ -41,6 +41,7 @@ if postgresql: host=settings.postgresql.host, port=settings.postgresql.port, autocommit=True, + autorollback=True, autoconnect=True, ) migrator = PostgresqlMigrator(database)