Skip to content

Commit

Permalink
Save output params after modification (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
pchevali committed May 2, 2024
1 parent 269ec25 commit eeb20c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion importer/handlers/common/raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def perform_last_step(execution_id):

_exec = orchestrator.get_execution_object(execution_id)

_exec.save()


_exec.output_params.update(
**{
Expand All @@ -205,6 +205,7 @@ def perform_last_step(execution_id):
]
}
)
_exec.save()

def extract_resource_to_publish(
self, files, action, layer_name, alternate, **kwargs
Expand Down

0 comments on commit eeb20c6

Please sign in to comment.