Add timeout option to SQLite Database

This commit is contained in:
har0ke 2019-08-20 19:48:50 +02:00
parent d6645a8e28
commit d14983b46e

View File

@ -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
}
}
}