Skip to content

Commit

Permalink
store spacial file always true for cloning
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi committed Oct 22, 2024
1 parent 7cce405 commit 7af997a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion importer/handlers/common/vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit 7af997a

Please sign in to comment.