Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/actinia_module_plugin/api/modules/actinia_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ def preprocess_load_tpl_and_enqueue(
# TODO parse request data when schema is defined
# Might be close to OGC API processes
kwargs = {}
kwargs[next(iter(undef))] = rdc.request_data
if len(undef) > 0:
kwargs[next(iter(undef))] = rdc.request_data

new_pc = fillTemplateFromProcessChain(actiniamodule, kwargs)
rdc.request_data = new_pc
Expand Down
Loading