added setting to disable tree fix
This commit is contained in:
parent
85f7740e9b
commit
d488559e42
@ -17,6 +17,7 @@ class CookbookConfig(AppConfig):
|
|||||||
'django.db.backends.postgresql']:
|
'django.db.backends.postgresql']:
|
||||||
import cookbook.signals # noqa
|
import cookbook.signals # noqa
|
||||||
|
|
||||||
|
if not settings.DISABLE_TREE_FIX_STARTUP:
|
||||||
# when starting up run fix_tree to:
|
# when starting up run fix_tree to:
|
||||||
# a) make sure that nodes are sorted when switching between sort modes
|
# a) make sure that nodes are sorted when switching between sort modes
|
||||||
# b) fix problems, if any, with tree consistency
|
# b) fix problems, if any, with tree consistency
|
||||||
|
@ -151,6 +151,7 @@ MIDDLEWARE = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
SORT_TREE_BY_NAME = bool(int(os.getenv('SORT_TREE_BY_NAME', False)))
|
SORT_TREE_BY_NAME = bool(int(os.getenv('SORT_TREE_BY_NAME', False)))
|
||||||
|
DISABLE_TREE_FIX_STARTUP = bool(int(os.getenv('DISABLE_TREE_FIX_STARTUP', False)))
|
||||||
|
|
||||||
if bool(int(os.getenv('SQL_DEBUG', False))):
|
if bool(int(os.getenv('SQL_DEBUG', False))):
|
||||||
MIDDLEWARE += ('recipes.middleware.SqlPrintingMiddleware',)
|
MIDDLEWARE += ('recipes.middleware.SqlPrintingMiddleware',)
|
||||||
|
Loading…
Reference in New Issue
Block a user