From 2308d5a613343699ca19ebdc9ac9aa0224910f2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Niederpr=C3=BCm?= Date: Tue, 4 Sep 2018 16:16:32 +0200 Subject: [PATCH] Catch ProgrammingError in Document checks. When running PostgreSQL or MariaDB/MySQL backends, a query to a non-existent table will raise a "ProgrammingError". This patch properly catches this error. Without this patch all management calls to manage.py will lead to an error when running PostgreSQL or MariaDB as a backend. --- src/documents/checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/documents/checks.py b/src/documents/checks.py index c80b63863..3310b1806 100644 --- a/src/documents/checks.py +++ b/src/documents/checks.py @@ -2,7 +2,7 @@ import textwrap from django.conf import settings from django.core.checks import Error, register -from django.db.utils import OperationalError +from django.db.utils import OperationalError, ProgrammingError @register() @@ -14,7 +14,7 @@ def changed_password_check(app_configs, **kwargs): try: encrypted_doc = Document.objects.filter( storage_type=Document.STORAGE_TYPE_GPG).first() - except OperationalError: + except (OperationalError, ProgrammingError): return [] # No documents table yet if encrypted_doc: