From 7af997ab154e70cd9036c20db23a2f6555371d7e Mon Sep 17 00:00:00 2001 From: Mattia Date: Tue, 22 Oct 2024 16:16:13 +0200 Subject: [PATCH] store spacial file always true for cloning --- importer/handlers/common/vector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/importer/handlers/common/vector.py b/importer/handlers/common/vector.py index 2b68b53..85998fa 100644 --- a/importer/handlers/common/vector.py +++ b/importer/handlers/common/vector.py @@ -220,7 +220,7 @@ def perform_last_step(execution_id): that the execution is completed """ _exec = BaseHandler.perform_last_step(execution_id=execution_id) - if _exec and not _exec.input_params.get("store_spatial_file", False): + if _exec and not _exec.input_params.get("store_spatial_file", True): resources = ResourceHandlerInfo.objects.filter(execution_request=_exec) # getting all assets list assets = filter(None, [get_default_asset(x.resource) for x in resources])