If I add a new parameter in a workbench that I call from fmeserverjobsubmitter all works with the default parameter until the fmeserverjobsubmitter is not refreshed.
After the refresh of the fmeserverjobsubmitter I have to specify the new variable with a value and I can't leave it blank in the hope that the value is replaced by the default.
I'd like the programming approach:
def myWorkbench(param1, param2 = False):
The param2 is set to false when I call myProcedure(value1) .
The goal is to have the auto set of the value from default parameter in the called workbench.
Now my solution is to set a published parameter, read it from pythonscript parameter and set it in function of the published parameter.

