SQLite3数据库所等待时间延长到120S

This commit is contained in:
ngfchl
2022-09-11 21:07:31 +08:00
parent 786664cd39
commit 3fe7049f30

View File

@@ -93,7 +93,7 @@ DATABASES = {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db/db.sqlite3',
'OPTIONS': {
'timeout': 60,
'timeout': 120,
'check_same_thread': False
}
},