From d14983b46eb4ae233306ceb4ef091ac95a1948f6 Mon Sep 17 00:00:00 2001 From: har0ke Date: Tue, 20 Aug 2019 19:48:50 +0200 Subject: [PATCH] Add timeout option to SQLite Database --- tallybill/settings.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tallybill/settings.py b/tallybill/settings.py index 8748738..d6bf7e3 100644 --- a/tallybill/settings.py +++ b/tallybill/settings.py @@ -82,6 +82,11 @@ DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'OPTIONS': { + 'timeout': 20, # in seconds + # see also + # https://docs.python.org/3.7/library/sqlite3.html#sqlite3.connect + } } }