From c629247aa9583aae991e2be58f5a2251e15d7438 Mon Sep 17 00:00:00 2001 From: vladsha-dev Date: Tue, 6 Aug 2024 11:00:35 +0200 Subject: [PATCH] Remove triggering indexing in the post deployment command (#309) Removed the triggering of indexing in the post-deployment command since it is not necessary for the 1.18.0 release. --- src/django/api/management/commands/post_deployment.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/django/api/management/commands/post_deployment.py b/src/django/api/management/commands/post_deployment.py index 7120885bb..458ef2ec9 100644 --- a/src/django/api/management/commands/post_deployment.py +++ b/src/django/api/management/commands/post_deployment.py @@ -9,4 +9,3 @@ class Command(BaseCommand): def handle(self, *args, **options): call_command('migrate') - call_command('index_facilities_new')