If I have a script with:
ExampleSet es = operator.getInput(ExampleSet.class);
Return es;
And then connect this script to a store operator.
I get this error:
Mandatory input missing at port Store.input.
The script runs fine, but this error probably caused because meta data not propagated trough script operator.
If I can just store inside the script, I don't need to use the store operator, and I get a nice process without warnings and errors.
Best regards,
Wessel
indeed, the script operator does not generate any meta data. To store an IOObject inside your script, you can just call Regards,
Marco