From c50a89c651ae7781ba3f2176dfa6f22262211aa0 Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Thu, 30 Dec 2021 18:08:29 +0100 Subject: [PATCH] disabled tree fix at startup for now --- cookbook/apps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/apps.py b/cookbook/apps.py index 3297d6928..5b2777f2b 100644 --- a/cookbook/apps.py +++ b/cookbook/apps.py @@ -24,8 +24,8 @@ class CookbookConfig(AppConfig): with scopes_disabled(): try: from cookbook.models import Keyword, Food - Keyword.fix_tree(fix_paths=True) - Food.fix_tree(fix_paths=True) + #Keyword.fix_tree(fix_paths=True) # disabled for now, causes to many unknown issues + #Food.fix_tree(fix_paths=True) except OperationalError: if DEBUG: traceback.print_exc()