Skip to content

Commit a48c419

Browse files
committed
fix exe optional parameter
1 parent 5442379 commit a48c419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actinia_module_plugin/core/modules/actinia_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ def transformPlaceholder(self, placeholderCollector):
386386
exe_param = {}
387387
exe_param["name"] = param
388388
exe_param["description"] = "Simple parameter from executable"
389-
exe_param["required"] = True
389+
exe_param["optional"] = False
390390
exe_param["schema"] = {"type": "string"}
391391
add_param_description(exe_param, "exe", dict())
392392
self.vm_params.append(exe_param)

0 commit comments

Comments
 (0)