Add timeout option to SQLite Database
This commit is contained in:
parent
d6645a8e28
commit
d14983b46e
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user