diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-03-01 23:20:56 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-03-08 11:39:56 +0100 |
commit | 15803d7a5c8598bae51b22a15f792fb03fdccbe0 (patch) | |
tree | 5bf2acc7fe635d6e5cf0ae5142f399bbd34c7711 /example_project | |
parent | 2113b7baf70571b22db3fd78d3bcf1c88352d32d (diff) | |
download | Ishtar-15803d7a5c8598bae51b22a15f792fb03fdccbe0.tar.bz2 Ishtar-15803d7a5c8598bae51b22a15f792fb03fdccbe0.zip |
Add django-background-task as a dependency (refs #3951)
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 96eabacb9..d488683d3 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -160,6 +160,7 @@ INSTALLED_APPS = [ 'archaeological_finds', 'ajax_select', 'compressor', + 'background_task', # 'debug_toolbar', ] @@ -250,6 +251,8 @@ ISHTAR_SEARCH_LANGUAGE = "french" ISHTAR_DPTS = [] +MAX_ATTEMPTS = 1 # django background tasks + TEST_RUNNER = 'ishtar_common.tests.ManagedModelTestRunner' try: |